Changeset 459156
- Timestamp:
- 11/03/2011 07:02:09 PM (14 years ago)
- Location:
- wp-super-faq/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (3 diffs)
-
wp_super_faq.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-super-faq/trunk/readme.txt
r459098 r459156 5 5 Requires at least: 3.1 6 6 Tested up to: 3.2.1 7 Stable tag: 0. 27 Stable tag: 0.3 8 8 9 9 A lightweight FAQ/QNA plugin that includes an FAQ shortcode for your site. A simple jQuery animation is included to show/hide each question. … … 51 51 == Changelog == 52 52 53 = 0.3 = 54 Added a fix that makes sure that the FAQ shows all of the questions regardless of what is set under Settings > Readings. 55 53 56 = 0.2 = 54 57 Added `register_taxonomy` into function call to fix `Call to a member function add_rewrite_tag() on a non-object in taxonomy` … … 58 61 59 62 == Upgrade Notice == 63 = 0.3 = 64 Minor update. You should upgrade to stay up-to-date. This bug will affect some of you that are using the 'Show At Most' feature of WordPress. 65 60 66 = 0.2 = 61 67 Bug fix. Upgrade Immediatly. -
wp-super-faq/trunk/wp_super_faq.php
r458396 r459156 4 4 Plugin URI: http://plugins.swampedpublishing.com/wp-super-faq 5 5 Description: A lightweight Wordpress Plugin that implements an FAQ page on your site using simple jQuery animation for a clean, usable interface. 6 Version: 0. 26 Version: 0.3 7 7 Author: rfrankel 8 8 Author URI: http://plugins.swampedpublishing.com/ … … 161 161 <?php 162 162 // Custom Loop 163 $wp_super_faq_query = new WP_Query( "taxonomy=wp_super_faq_category&term=$term->slug " );163 $wp_super_faq_query = new WP_Query( "taxonomy=wp_super_faq_category&term=$term->slug&posts_per_page=-1" ); 164 164 // The Loop 165 165 while ($wp_super_faq_query->have_posts()) : $wp_super_faq_query->the_post();
Note: See TracChangeset
for help on using the changeset viewer.