Modify Site Title When Using Genesis Framework
If you want to change or modify the site title (e.g. add special chars, add css, …) when using the Genesis framework:
remove_action( 'genesis_site_title', 'genesis_seo_site_title' );
add_action( 'genesis_site_title', 'snippet_site_title' );
function snippet_site_title() {
echo '<h1 id="title"><span>Custom</span> Title</h1>';
}
Related Posts
- Modify Site Title
- Customize Breadcrumbs for Custom Post Types Using Genesis Framework
- Tutorial: Ubuntu 18.04 LAMP Setup for WordPress
- Remove Page Title in Site Header
- Highlight Search Terms in Post Titles When Using Relevanssi
- Customize Breadcrumbs for Custom Post Types
- Modify Meta Info in Entry Header