Skip to content

Instantly share code, notes, and snippets.

@jdelia
Created July 20, 2017 18:11
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 jdelia/11a153ff63ae9444f721581d2535bd90 to your computer and use it in GitHub Desktop.
Save jdelia/11a153ff63ae9444f721581d2535bd90 to your computer and use it in GitHub Desktop.
H1 on Home Page for Genesis
<?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