Last active
August 29, 2015 14:08
-
-
Save thecodepoetry/70f8f0283ed9cabc8c71 to your computer and use it in GitHub Desktop.
Remove Theme options menu from admin bar
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_action( 'wp_before_admin_bar_render', 'remove_theme_options', 999 ); | |
function remove_theme_options() { | |
if ( ! is_admin() ) { | |
global $wp_admin_bar; | |
$wp_admin_bar->remove_node('options-framework-parent'); //theme options | |
$wp_admin_bar->remove_node('presscore-icons-bar'); //icon bar | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this code in your child theme's functions.php