Skip to content

Instantly share code, notes, and snippets.

@gasatrya
Created July 16, 2013 03:42
Show Gist options
  • Save gasatrya/6005578 to your computer and use it in GitHub Desktop.
Save gasatrya/6005578 to your computer and use it in GitHub Desktop.
Replaces WordPress login header logo title
<?php
add_filter( 'login_headertitle', 'my_login_headertitle' );
/**
* Replaces the login header logo title
*
*/
function my_login_headertitle( $title ) {
$title = get_bloginfo( 'name' );
return $title;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment