<?php /** https://www.youtube.com/watch?v=5jg9sJvFrPQ **/ function ideapro_remove_admin_bar_items($wp_admin_bar) { global $current_user,$post; if(!is_admin()) { if($post->ID == 2) { $wp_admin_bar->remove_node('new-content'); $wp_admin_bar->remove_node('comments'); $wp_admin_bar->remove_node('my-account'); $wp_admin_bar->remove_node('wp-logo'); $wp_admin_bar->remove_node('customize'); } } } add_action('admin_bar_menu','ideapro_remove_admin_bar_items',800); function ideapro_remove_admin_bar_by_post_type() { global $post; if($post->post_type == "post") { show_admin_bar(true); } } add_action('wp_head','ideapro_remove_admin_bar_by_post_type'); function ideapro_remove_admin_bar_items_js() { ?> <script> jQuery("#wp-admin-bar-my-account").css("display","none"); </script> <?php } //add_action('admin_footer','ideapro_remove_admin_bar_items_js'); ?>