Viewing 2 replies - 1 through 2 (of 2 total)
  • this is what I use; added to my functions.php file … you may need to adjust for your own use:

    function mytheme_admin_bar_render() {
      	global $wp_admin_bar;
      	$wp_admin_bar->remove_menu('wpseo-menu');
      }
     add_action( 'wp_before_admin_bar_render', 'mytheme_admin_bar_render' );
     add_filter( 'wpseo_use_page_analysis', '__return_false' );
    Thread Starter glgeorgiou

    (@glgeorgiou)

    It resolved. Thank your your solution.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to hide SEO icon on top toolbar when i am logged-in’ is closed to new replies.