How to disable the WordPress admin bar

In continue of Joost de Valk’s article about how to disable the new since WordPress 3.1, and quite awful looking admin bar here’s an updated guide on how to manage this.

Using a cascading style sheet (CSS) would be a way to accomplish this, but since they both (Ozh, and ilovecolors) have a wicked site, and it’s useful for all other kind of tweaks and setting-removals I sort of prefer the jQuery way of handling this.

To disable the WordPress admin bar

/*
 * Remove admin bar.
 */
add_filter( 'show_admin_bar', '__return_false' );

To disable the user settings

function cor_personal_options() {
?>
<script type="text/javascript">
	jQuery(document).ready( function() {
		// Remove admin bar
		jQuery( "form#your-profile table.form-table tr.show-admin-bar" ).remove();
	} );
</script>
<?php
}
add_action( 'personal_options', 'cor_personal_options' );
How to disable the WordPress admin bar
Posted in WordPress | Leave a comment

Hallo wereld!

Hallo, mijn naam is Cor van Noorloos en ik ben de oprichter van ‘24design’, een freelance web ontwerpstudio gevestigd in Nederland.

Op deze website vindt u mijn persoonlijke web design portfolio (mijn diensten zijn op dit moment beschikbaar), evenals een blog met het hoofdonderwerp web design voorzien van de nieuwste trends, variërend van maar niet beperkt tot, reclame, code productie, klantbeleving, digitale media, grafische vormgeving, logo ontwerp, zoekmachine optimalisatie en marketing, sociale netwerken, typografie, web design en nog veel meer ∞

Hallo wereld!
Posted in Work | Tagged , , | Leave a comment

Hello world!

Hello, my name is Cor van Noorloos and I am the founder of ‘24design’, a tiny design studio located in the Netherlands.

On this website you will find my personal web design portfolio (my design services are currently available for hire), as well as a blog on the main subject of web design providing the latest trends, ranging from but not limited to; advertising, code production, customer experience, digital media, graphic design, logo design, search engine optimization and marketing, social networking, typography, web design and more ∞

Hello world!
Posted in Work | Tagged , , | Leave a comment