Skip to content

Instantly share code, notes, and snippets.

@dannygsmith
Forked from cdils/genesis-site-title.php
Created October 11, 2017 04:05
Show Gist options
  • Save dannygsmith/3ac41e2f7555d084b3e0e7e2811ae631 to your computer and use it in GitHub Desktop.
Save dannygsmith/3ac41e2f7555d084b3e0e7e2811ae631 to your computer and use it in GitHub Desktop.
Filter the Genesis SEO Title to output with a custom class.
// Filter the title with a custom function
add_filter('genesis_seo_title', 'wap_site_title' );
// Add additional custom style to site header
function wap_site_title( $title ) {
// Change $custom_title text as you wish
$custom_title = '<span class="custom-title">WA</span>Estate';
// Don't change the rest of this on down
// If we're on the front page or home page, use `h1` heading, otherwise us a `p` tag
$tag = ( is_home() || is_front_page() ) ? 'h1' : 'p';
// Compose link with title
$inside = sprintf( '<a href="%s" title="%s">%s</a>', trailingslashit( home_url() ), esc_attr( get_bloginfo( 'name' ) ), $custom_title );
// Wrap link and title in semantic markup
$title = sprintf ( '<%s class="site-title" itemprop="headline">%s</%s>', $tag, $inside, $tag );
return $title;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment