Skip to content

Instantly share code, notes, and snippets.

@braddalton
Created March 25, 2016 09:16
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/1be4d1dabdf31f1eed54 to your computer and use it in GitHub Desktop.
Save braddalton/1be4d1dabdf31f1eed54 to your computer and use it in GitHub Desktop.
add_filter('genesis_seo_title', 'sp_seo_title', 10, 3);
function sp_seo_title($title, $inside, $wrap) {
$inside = sprintf( '<a href="" title="%s">%s</a>', esc_attr( get_bloginfo('name') ), get_bloginfo('name') );
$title = sprintf('<%s id="title">%s</%s>', $wrap, $inside, $wrap);
return $title;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment