Yep a geeky thing .. today word press updated to version 3.1

It comes with a new “admin bar” that can upset older themes, however disabling it is not that hard (if you know your way around wordpress coding)

in your themes folder there is a file called functions.php

add this to the end of the file:

<?php 

function loudas_hide_admin_bar_settings() { 

}

function loudas_disable_admin_bar() { 
	add_filter( 'show_admin_bar', '__return_false' ); 
	add_action( 'admin_print_scripts-profile.php','loudas_hide_admin_bar_settings' ); 
} 
add_action( 'init', 'loudas_disable_admin_bar' , 9 ); 

?>
  

Leave a Comment

Liked what you've read?

  1. Leave me a message, or
  2. Drop me an email

It only takes a second of your time, but it means the world to me.
Don't comment on Facebook, comment here !

I don't keep any of your information, I only ask for a name, and an email to stop spammers!
Pretty please !! :)

Your email address will not be published. Required fields are marked *

You won't be notified of replies, so come back and visit again!

☝️ Top
🏠 Home