Opis
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
- Follow the developer @Twitter
- Other Genesis Framework Compatible WordPress plugins
Zrzuty ekranu
Instalacja
This section describes how to install the plugin and get it working.
e.g.
- Upload the full directory into your wp-content/plugins directory
- Activate the plugin at the plugin administration page
- Go edit any post and you’ll get „Title Tagline” metabox below the editor
- I hope you’ll love this plugin 🙂
Recenzje
Wtyczka nie ma jeszcze żadnej recenzji.
Kontrybutorzy i deweloperzy
„Title Tagline for Genesis” jest oprogramowaniem open source. Poniższe osoby miały wkład w rozwój wtyczki.
ZaangażowaniPrzetłumacz wtyczkę “Title Tagline for Genesis” na swój język.
Interesuje cię rozwój wtyczki?
Przeglądaj kod, sprawdź repozytorium SVN lub czytaj dziennik rozwoju przez RSS.
Rejestr zmian
1.0
- Initial Plugin release