25% off ProSNIPC25OFF

Yoast SEO: Remove the Admin Bar Node

Removes the Yoast SEO traffic-light node from the WordPress admin bar on both the frontend and back end.

PHPby SnipCraft
php
<?php
if ( ! function_exists( 'scseed_remove_yoast_admin_bar_node' ) ) {
    function scseed_remove_yoast_admin_bar_node() {
        if ( ! defined( 'WPSEO_VERSION' ) ) {
            return;
        }
        global $wp_admin_bar;
        if ( ! is_object( $wp_admin_bar ) ) {
            return;
        }
        $wp_admin_bar->remove_node( 'wpseo-menu' );
    }
    add_action( 'wp_before_admin_bar_render', 'scseed_remove_yoast_admin_bar_node', 999 );
}
#admin-bar#cleanup#seo#ui#yoast-seo