Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eri-trabiccolo/4fb9bc7af2700601b2a2 to your computer and use it in GitHub Desktop.
Save eri-trabiccolo/4fb9bc7af2700601b2a2 to your computer and use it in GitHub Desktop.
add site title to customizr home page but don't display it
add_filter('tc_logo_img_display', 'add_hidden_title_anyway');
function add_hidden_title_anyway($html){
if ( ! tc__f('__is_home') )
return $html;
$title = sprintf('<%1$s %3$s>%2$s</%1$s>',
apply_filters( 'tc_site_title_tag', 'h1'),
__( esc_attr( get_bloginfo('name') ) ),
'style="position:absolute;left:-9999px;"'
);
return $html.$title;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment