=== Genesis Subtitles ===
Contributors: Ahjira
Tags: subtitle
Requires at least: 3.5
Tested up to: 3.6.1
Stable tag: 1.2
License: GPLv2 or later



== Description ==

This plugin adds an entry field just below the title field on all post,
page and custom post type edit screens. It allows you to specify a
subtitle for the content and then outputs the result in an H2 tag just
under the entry-title where you'd expect to find it.

This plugin is for use with Genesis only because it uses the hook,
genesis_entry_header to position the output after the title but before
the post-info.



== Installation ==

1.  If you use FTP to upload your plugins, unzip the zip file and upload the resulting directory to /wp-content/plugins/
    If you use the automatic uploader, there's no need to unzip the file first.
    
2. Activate the plugin Genesis Subtitles through the 'Plugins' menu in WordPress

3. Look for the entry field just below the title field on your edit screens.



== Screenshots ==

1. Subtitle field below the title where you'd expect it


== Frequently Asked Questions ==

Q: Can I tweak the output with my own markup?
A: Yes! You can use the filter genesis_subtitles_output to generate any output you want. Use the code below as an example.

add_filter( 'genesis_subtitles_output', 'subtitle_output_my_way' );
function subtitle_output_my_way( $output ) {
  global $post;
  $subtitle = get_post_meta( $post->ID, '_ahjira_subtitle', TRUE );
  $output = '<h6 class="subtitle">' . $subtitle . '</h6>';
  return $output;
}

Q: Does your theme Flint have built-in support to style these subtitles?
A: YES! You'll find the options on the Flint » Content page in the section with all the other headings and text styles.


For more information, please visit the plugin's home page at:
http://ahjira.com/plugins/genesis-subtitles




== Changelog ==

= 1.2 =
• Removed unnecessary permission check

= 1.1 =
• Added auto-update feature
 
= 1.0 =
• Initial release




== Upgrade Notice ==

Nothing to note.