Skip to content

Instantly share code, notes, and snippets.

@braddalton
Created September 30, 2019 18:41
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 braddalton/66c982d872f88f963e4f41a0706e85d4 to your computer and use it in GitHub Desktop.
Save braddalton/66c982d872f88f963e4f41a0706e85d4 to your computer and use it in GitHub Desktop.
add_filter( 'genesis_seo_title', 'child_header_title', 10, 3 );
function child_header_title( $title, $inside, $wrap ) {
$inside = sprintf( '<a href="https://www.cindyjholbrook.com/" title="%s">%s</a>', esc_attr( get_bloginfo( 'name' ) ), get_bloginfo( 'name' ) );
return sprintf( '<%1$s class="site-title">%2$s</%1$s>', $wrap, $inside );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment