Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save LittleCoding/6380a341184edd97eaa8a8240b500d27 to your computer and use it in GitHub Desktop.
Save LittleCoding/6380a341184edd97eaa8a8240b500d27 to your computer and use it in GitHub Desktop.
Add company link to the WordPress logo menu.
<?php
/**
* code to be placed in theme functions.php
* add_filter priority of 10 or greater.
*/
if ( ! function_exists( 'mytheme_admin_bar_menu' ) ) {
function mytheme_admin_bar_menu( $wp_admin_bar ) {
$wp_admin_bar->add_node( array(
'parent' => 'wp-logo-external',
'id' => 'acme-corp',
'title' => 'Acme Corp.',
'href' => 'http://acme.localhost/',
'meta' => array( 'title' => 'Acme Corporation', 'target' => '_blank' ),
) );
}
add_filter( 'admin_bar_menu', 'mytheme_admin_bar_menu', 10 );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment