Skip to content

Instantly share code, notes, and snippets.

@billerickson
Last active April 20, 2019 16:04
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save billerickson/5de4d266c48e6cfaddce to your computer and use it in GitHub Desktop.
Save billerickson/5de4d266c48e6cfaddce to your computer and use it in GitHub Desktop.
<?php
/**
* Use h1 for site title
* @see https://www.billerickson.net/genesis-h1-front-page/
*/
function ea_h1_for_site_title( $wrap ) {
return is_front_page() ? 'h1' : $wrap;
}
add_filter( 'genesis_site_title_wrap', 'ea_h1_for_site_title' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment