Hi,
Can anyone tell how can i disable the admin bar at the top of the page??? I am using wordpress 3.1 version.
Thanks
Hi,
Can anyone tell how can i disable the admin bar at the top of the page??? I am using wordpress 3.1 version.
Thanks
review this sticky for solutions: http://wordpress.org/support/topic/troubleshooting-wordpress-31-master-list?replies=11
Insert the following coed in functions.php
/* Disable the Admin Bar. */
add_filter('show_admin_bar', '__return_false');
/* Remove the Admin Bar preference in user profile */
remove_action('personal_options', '_admin_bar_preferences');From wp-admin > Profile >> Off Admin bar on site ..
soblonde's method worked for me.
how bout just adding this to functions.php
show_admin_bar(false);
?????
This topic has been closed to new replies.