Skip to content

Instantly share code, notes, and snippets.

@thecodepoetry
Last active August 29, 2015 14:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thecodepoetry/70f8f0283ed9cabc8c71 to your computer and use it in GitHub Desktop.
Save thecodepoetry/70f8f0283ed9cabc8c71 to your computer and use it in GitHub Desktop.
Remove Theme options menu from admin bar
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
}
}
@thecodepoetry
Copy link
Author

Add this code in your child theme's functions.php

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment