Skip to content

Instantly share code, notes, and snippets.

@dgkeyes
Created January 10, 2018 01:20
Show Gist options
  • Save dgkeyes/ea99ffb4543b9ee03391edb8fdd2d317 to your computer and use it in GitHub Desktop.
Save dgkeyes/ea99ffb4543b9ee03391edb8fdd2d317 to your computer and use it in GitHub Desktop.
Change title on single report pages
//* Remove the site title
remove_action( 'genesis_site_title', 'genesis_seo_site_title' );
add_action( 'genesis_site_title', 'ods_report_title' );
function ods_report_title() {
?>
<h1 class="site-title"><a href="#">Outdoor School in Oregon</a></h1>
<?php
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment