Created
July 20, 2017 18:11
-
-
Save jdelia/11a153ff63ae9444f721581d2535bd90 to your computer and use it in GitHub Desktop.
H1 on Home Page for Genesis
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* Add this to your Genesis front-page.php */ | |
add_filter( 'genesis_site_title_wrap', 'brandiD_h1_for_site_title' ); | |
/** | |
* Use h1 for site title. | |
* | |
* @param string $wrap site title. | |
* @return $wrap force h1. | |
*/ | |
function brandiD_h1_for_site_title( $wrap ) { | |
return 'h1'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment