Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter sanderbontje

    (@sanderbontje)

    To answer my own question, for the time being just add this to you theme’s function.php file:

    add_action( 'admin_bar_menu', 'remove_some_nodes_from_admin_bar_menu', 999 );
    function remove_some_nodes_from_admin_bar_menu( $wp_admin_bar ) {
    	/* Remove the intrusive 'Security' node from the admin bar added by the iThemes Security plugin */
    	$wp_admin_bar->remove_node( 'itsec_admin_bar_menu' );
    }

    Thumbs up. You should have this option built in to turn this feature off, because it is unnecesary clutter for clients sites and as well on mine. I never use it.

    Hello,

    Yes i agree with you krkt

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Please remove the 'Security' option from the admin bar’ is closed to new replies.