Title Tagline for Genesis

plugin banner

Add title tagline text below your post title on your Genesis Framework powered WordPress sites.

Author:phpbits (profile at wordpress.org)
WordPress version required:4.0
WordPress version tested:4.7.28
Plugin version:1.0
Added to WordPress repository:11-10-2016
Last updated:12-10-2016
Warning! This plugin has not been updated in over 2 years. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.
Rating, %:0
Rated by:0
Plugin URI:https://wordpress.org/plugins/title-tagline-f...
Total downloads:1 015
Active installs:10+
plugin download
Click to start download

This plugin will only work if you are using Genesis Framework or Child Themes.

Extra Tagline below Post Title

Improve your blog post readability by adding title tagline below your post title which can be added easily via custom metabox available on the post edit dashboard page.

Allow Tagline on Page or Custom Post Types

Of course you can add tagline on pages and post types too. Just add the filter below on your functions.php with the post type you’ll want to be added. Easy!

add_filter( 'genesis_title_tagline_post_types', 'genesis_add_title_tagline_post_types' );
function genesis_add_title_tagline_post_types( $types ){
    $types[] = 'page';
    $types[] = 'custom_post_type';
    return $types;
}

Styling

If you need to add custom css to title tagline, you can use something like this one which changes the opacity.

.entry-title-tagline{ opacity: 0.8; }

More information


Screenshots
ChangeLog