Last active
August 29, 2015 14:13
-
-
Save jdspiral/c786f59f3a53cbd34aa8 to your computer and use it in GitHub Desktop.
Edit Site Title - Genesis
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
// Edit Site Title | |
remove_action( 'genesis_site_title', 'genesis_seo_site_title' ); | |
add_action( 'genesis_site_title', 'jds_seo_site_title' ); | |
function jds_seo_site_title() { | |
echo '<h1 id="title"><a href="#">JDSpiral</a></h1>'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment