But the SEO link in the WordPress toolbar is not always useful for everyone, and you may want to hide the SEO element from other users of your WordPress powered site.
WordPress SEO plugin does not provide any option or setting to hide or unhide the SEO link on the WordPress admin toolbar. But we can always remove the undesired WordPress SEO element on the admin bar through filters and hooks.
Add the following code snippet into your active theme to remove the WordPress SEO menu entry on the admin toolbar:
add_action( 'wp_before_admin_bar_render', 'tj_admin_bar_render' ); function tj_admin_bar_render() { global $wp_admin_bar; $wp_admin_bar->remove_menu('wpseo-menu'); }
add_action( 'wp_before_admin_bar_render', 'tj_admin_bar_render' ); function tj_admin_bar_render() { if (!( current_user_can( 'manage_options' ) )) { global $wp_admin_bar; $wp_admin_bar->remove_menu('wpseo-menu'); } }