You can Change url in header in the Genesis with a filter.
I have not really a clue why you would do this, other than having a multisite and want to point all of your subsites to the main site.
This filter changes the header url in Genesis in the site title of your site with a custom url.
Change the “http://example.com/” with your cuctom url place this in your function.php
1 2 3 4 5 | add_filter( 'genesis_seo_title', 'child_header_title', 10, 3 ); function child_header_title( $title, $inside, $wrap ) { return sprintf( '<%1$s class="site-title">%2$s%1$s>', $wrap, $inside ); } |