Customize the Header URL Customize the header URL of your site using the Genesis Framework: <?php // Customize the header URL add_filter('genesis_seo_title', 'custom_seo_title', 10, 3); function custom_seo_title($title, $inside, $wrap) { $inside = sprintf( '<a href="http://www.yourdomain.com" title="%s">%s</a>', esc_attr( get_bloginfo('name') ), get_bloginfo('name') ); $title = sprintf( '<%s id="title">%s</%s>', $wrap, $inside, $wrap); return $title; }