Skip to content

Instantly share code, notes, and snippets.

@koke
Forked from westi/Always show admin bar
Created January 7, 2011 16:20
Show Gist options
  • Save koke/769684 to your computer and use it in GitHub Desktop.
Save koke/769684 to your computer and use it in GitHub Desktop.
<?php
function pjw_login_adminbar( $wp_admin_bar) {
if ( !is_user_logged_in() )
$wp_admin_bar->add_menu( array( 'title' => __( 'Log In' ), 'href' => wp_login_url() ) );
}
add_action( 'admin_bar_menu', 'pjw_login_adminbar' );
add_filter( 'show_admin_bar', '__return_true' , 1000 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment