P
by Mark / t31os 5 (14 reviews)

Post UI Tabs

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

Post UI Tabs ranks #9,657 among WordPress.org plugins with 400+ active installations, is #1,278 of 8,549 in the Customization category, a 5/5 rating from 14 reviews, and was last updated Apr 30, 2013. Data from WordPress.org, refreshed twice daily — see methodology.

Tested up to WP 3.6.1 (Current: 7.1)
v1.1.0 Current Version v1.1.0
Updated 13 years ago Last Update on 30 Apr, 2013
Refreshed 6 hours ago Last Refreshed on
#1,278 of 8,549 in Customization Top 25% by installs No update in over a year
View on WordPress.org
Rank
#9,657
No change
Active Installs
400+
-13.6%
KW Avg Position
N/A
No change
Downloads
51.8K
+7 today
Support Resolved
0%
No change
Rating
100%
Review 5 out of 5
5 (14 reviews)

Next Milestone 500

Total Progress 55%
400+ 500+
511
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro

Unlock Exact Install Count

See the precise estimated active installs for this plugin, calculated from real-time ranking data.

  • Exact install estimates within tiers
  • Track install growth over time
  • Milestone progress predictions
Upgrade to Pro
Need 45 more installs to reach 500+

Rank Changes

9,616 9,629 9,642 9,654 9,667 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026
9,614 9,627 9,641 9,654 9,667 02-09-2026 03-09-2026 04-09-2026 05-09-2026 06-09-2026 07-09-2026 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026
Current #9,657
Change
Best #

Upgrade to Pro

Unlock 30-day and 90-day rank history charts with a Pro subscription.

Upgrade Now

Active Installs Growth

Active Installs 0,000,000+
Growth +0.0%
Peak 0,000,000

Downloads Growth

0 10 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026
0 10 02-09-2026 03-09-2026 04-09-2026 05-09-2026 06-09-2026 07-09-2026 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026
Downloads
Growth
Peak

Upgrade to Pro

Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.

Upgrade Now

Reviews & Ratings

5.0
14 reviews
Overall 100%
5
14 (100%)
4
0 (0%)
3
0 (0%)
2
0 (0%)
1
0 (0%)

Security History

Source: WPVulnerability

No known vulnerabilities on record for Post UI Tabs. Checked 1 month ago.

TL;DR

AI summary of the plugin's readme

This plugin is for WordPress site owners and developers who want to display post content in tabbed layouts using shortcodes. It solves the problem of presenting content in styled, jQuery-powered tabs without custom coding, while giving developers filters and actions to customize behavior.

  • Shortcode-based tab creation
  • 24 jQuery UI themes
  • Custom stylesheet support
  • Works on posts, pages, post types
  • Filter for enabling tabs script
  • Customizable tab navigation text
  • Option to disable skins
  • Trailing linebreak toggle

Frequently Asked Questions

Common questions about Post UI Tabs

Click one of the simple to use tinymce buttons provided by PUT in the post editor, quick tags are also available in the text editor. or Use the following format to write them directly into the post editor. [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 necessary for all tab sets end with the [end_tabset] shortcode, the tabs will not appear without this shortcode. Please be aware that tab shortcodes can not be placed on the same line, this is a limitation of shortcode functionality in WordPress(and i do not wish to bloat this plugin with extra code to work around it).
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).
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).
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.
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.
Add the following to your theme's functions.php file. add_filter( 'put_nav_class', '__return_empty_array' );
You can modify the previous and next link text using the following in your theme's functions.php file. // Remove the UI classes(used by default to display nav icons) add_filter( 'put_nav_class', '__return_empty_array' ); // Hook callback functions to the filters add_filter( 'put_next_text', 'put_nav_next_text' ); add_filter( 'put_prev_text', 'put_nav_prev_text' ); // Callback to change the 'Next' text function put_nav_next_text() { return 'Your next text'; } // Callback to change the 'Previous' text function put_nav_prev_text() { return 'Your previous text'; }
Method one: Using a stylesheet in your theme's directory(will work for child themes to) add_filter( 'put_stylesheet_uri', 'my_custom_put_stylesheet' ); function my_custom_put_stylesheet( $uri ) { return get_stylesheet_directory_uri() . '/mycustom.css'; } Method two: Adding a filter from inside your own plugin file add_filter( 'put_stylesheet_uri', 'my_plugin_put_stylesheet' ); function my_plugin_put_stylesheet( $uri ) { // If the stylesheet is in the plugin's main directory return plugins_url( '', __FILE__ ) . '/mycustom.css'; // Eg. http://www.example.com/wp-content/plugins/your-plugin/mycustom.css // If the stylesheet is in a subdirectory of the plugin return plugins_url( 'dir', __FILE__ ) . '/mycustom.css'; // Eg. http://www.example.com/wp-content/plugins/your-plugin/dir/mycustom.css } Method three: Check the Disable skins option on the Post UI Tabs settings page and do either of the following. Add your own CSS to your theme's stylesheet(typically style.css). Call wp_enqueue_style on the put_enqueue_styles action, ie. the regular WP enqueuing method.
You can, simply place the following code into your theme's functions.php file or a plugin. add_filter( 'put_trailing_linebreak', '__return_false' );

Sign In / Register

You need to sign in or register to use this feature.