Created
January 10, 2018 01:20
-
-
Save dgkeyes/ea99ffb4543b9ee03391edb8fdd2d317 to your computer and use it in GitHub Desktop.
Change title on single report pages
This file contains 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
//* 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