Skip to content

Instantly share code, notes, and snippets.

@cdcarson
Last active December 31, 2015 21:09
Show Gist options
  • Save cdcarson/8045326 to your computer and use it in GitHub Desktop.
Save cdcarson/8045326 to your computer and use it in GitHub Desktop.
filter the title attribute of the login header image
<?php
add_filter(
'login_headertitle',
function($title){
return get_bloginfo('name');
}, 10, 1
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment