Last active
December 29, 2015 00:08
-
-
Save cdils/7583540 to your computer and use it in GitHub Desktop.
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
<? php //remove this | |
//** Add additional style to site header | |
add_filter('genesis_seo_title', 'cd_site_title' ); | |
function cd_site_title($title) { | |
$custom_title = '<span class="custom-title">My Name</span> | My Specialness'; | |
$inside = sprintf( '<a href="%s" title="%s">%s</a>', trailingslashit( home_url() ), esc_attr( get_bloginfo( 'name' ) ), $custom_title ); | |
$title = '<h1 class="site-title" itemprop="headline">'. $inside .'</h1>'; | |
return $title; | |
} |
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
<? php //remove this line | |
//** Add additional style to site header | |
add_filter('genesis_seo_title', 'wap_site_title' ); | |
function wap_site_title($title) { | |
$custom_title = '<span class="custom-title">WA</span>Estate'; | |
$inside = sprintf( '<a href="%s" title="%s">%s</a>', trailingslashit( home_url() ), esc_attr( get_bloginfo( 'name' ) ), $custom_title ); | |
$title = '<h1 class="site-title" itemprop="headline">'. $inside .'</h1>'; | |
return $title; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment