Home › Community Forums › Epik Theme Support › modify the header URL of your site › Reply To: modify the header URL of your site

Thanks for the quick response! Sorry, this is the code from http://my.studiopress.com/snippets/header/
`//* Modify the header URL
add_filter(‘genesis_seo_title’, ‘custom_seo_title’, 10, 3);
function custom_seo_title($title, $inside, $wrap) {
$inside = sprintf( ‘%s‘, esc_attr( get_bloginfo(‘name’) ), get_bloginfo(‘name’) );
$title = sprintf(‘<%s id=”title”>%s</%s>’, $wrap, $inside, $wrap);
return $title;
}
The issue is that the URL title in the Settings>General section is not controlling the URL title on sportseye.com since it does not match, and has not, since switching to Genesis ๐ Thus, I assumed it was normal in that this page exists:
http://my.studiopress.com/snippets/header/
Thanks again!