=== Plugin Name ===
Contributors: t31os_
Tags: editor, shortcode, tabs, jquery, jquery-ui, post, page, custom-post-types
Requires at least: 3.1.0
Tested up to: 3.3
Stable tag: 1.0.5

Create jQuery tabs inside your posts, pages or post types using simple shortcodes inside the post editor. 

== Description ==

Show off your post content inside stylish jQuery powered tabs using one of 25 different themes or create your own styling to suit.

== Installation ==

1. Upload the `put`(post-ui-tabs) folder to the `/wp-content/plugins/` directory
1. Activate the plugin through the Plugins menu in WordPress
1. Visit the plugin configuration screen under **Admin > Settings > Post UI Tabs** and set your preferences
1. Create posts using the easy to use shortcode and watch the magic happen

== Frequently Asked Questions ==

= So how do i create tabs? =

Please use the following format for creating tab sets.
`
[tab name="Your tab name 1"]Your tab content[/tab] 
[tab name="Your tab name 2"]Your tab content[/tab]
[tab name="Your tab name 3"]Your tab content[/tab]
[end_tabset]
`
**NOTE:** It is essential all tab sets end with the `[end_tabset]` shortcode, the tabs will not appear without it. Please also note tabs can not be placed on the same line, this is a limitation of shortcode functionality in WordPress.

= Can i use my own stylesheet instead of one of the UI skins? =

Yes, simply disable skins and add any custom CSS for styling into your own stylesheet.

**NOTE:**  The live preview is not available when defining your own CSS.

= Can i use HTML inside the tabs? =

You may use any HTML the WordPress content editor usually allows inside the tab content, but not inside the tab names(which are sanitized seperately).

= Can i use tabs in pages? =

The plugin is not restricted to a particular kind of content, so yes pages, posts or custom post types(or at least any type that supports using the content editor).

= Can i use other shortcodes inside the tab content? =

Yes you should be able to, it has not been tested, but if you have any problems feel free to start a support topic right here in the WordPress.org forums.

= Why do the tabs not look the same when i view them on the front facing side of my site? =

It is possible your theme's stylesheet is applying CSS to some of the tabs elements, please feel free to start a support topic if you need help making adjustments.

= How can i remove the UI classes from the next and previos links? =

Add the following to your theme's **functions.php** file.
`
add_filter( 'post_ui_tabs_class', '__return_empty_array' );
`
= When using text nav links how i can change the link text? =

Add the following to your theme's **functions.php** file.
`
// First disable UI classes to see navigation text
add_filter( 'post_ui_tabs_class', '__return_empty_array');

// Add text filters
add_filter( 'post_ui_tabs_next', 'put_nav_next_text' );
add_filter( 'post_ui_tabs_prev', 'put_nav_prev_text' );

// Change the 'Next' text
function put_nav_next_text() { return 'Your next text'; }

// Change the 'Previous' text
function put_nav_prev_text() { return 'Your previous text'; }
`

== Screenshots ==

1. A post with 2 jQuery UI tab sets
2. The plugin administration page

== Changelog ==

= 1.0.4 =
* Update to jQuery UI 1.8.15 (for skins)
* Add option to display tab titles and content in feeds
* Rearrange markup for feeds so titles and content does not bunch together
* Move enqueues to more appropriate action

= 1.0.3 =
* Rename cookie javascript, possible fix for unknown problem with 404s to cookie script
* Remove shortcode content from feeds(was never intended to be output in feeds)

= 1.0.2 =
* Fix style/script versions
* Add proper plugin version to plugin(whoops)
* Add more to readme.txt

