Skip to content

Instantly share code, notes, and snippets.

@mindctrl
Forked from danielbachhuber/gist:6584069
Created September 24, 2013 20:56
Show Gist options
  • Save mindctrl/6691110 to your computer and use it in GitHub Desktop.
Save mindctrl/6691110 to your computer and use it in GitHub Desktop.
<?php
add_action( 'admin_bar_menu', function( $wp_admin_bar ){
$args = array(
'id' => 'your-logo',
'title' => '<img style="padding-top:5px;" src="' . plugins_url( 'img/your-logo.png', __FILE__ ) . '" />',
);
$wp_admin_bar->add_node( $args );
}, 0 );
add_action( 'admin_bar_menu', function( $wp_admin_bar ){
$wp_admin_bar->remove_node( 'wp-logo' );
}, 100 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment