Plugin Directory

Changeset 459156


Ignore:
Timestamp:
11/03/2011 07:02:09 PM (14 years ago)
Author:
rfrankel
Message:

Fixed bug that relied on WordPress setting for 'Show at Most' blog posts. Now the loop will show all posts.

Location:
wp-super-faq/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wp-super-faq/trunk/readme.txt

    r459098 r459156  
    55Requires at least: 3.1
    66Tested up to: 3.2.1
    7 Stable tag: 0.2
     7Stable tag: 0.3
    88
    99A lightweight FAQ/QNA plugin that includes an FAQ shortcode for your site. A simple jQuery animation is included to show/hide each question.
     
    5151== Changelog ==
    5252
     53= 0.3 =
     54Added a fix that makes sure that the FAQ shows all of the questions regardless of what is set under Settings > Readings.
     55
    5356= 0.2 =
    5457Added `register_taxonomy` into function call to fix `Call to a member function add_rewrite_tag() on a non-object in taxonomy`
     
    5861
    5962== Upgrade Notice ==
     63= 0.3 =
     64Minor 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
    6066= 0.2 =
    6167Bug fix.  Upgrade Immediatly.
  • wp-super-faq/trunk/wp_super_faq.php

    r458396 r459156  
    44Plugin URI: http://plugins.swampedpublishing.com/wp-super-faq
    55Description: A lightweight Wordpress Plugin that implements an FAQ page on your site using simple jQuery animation for a clean, usable interface.
    6 Version: 0.2
     6Version: 0.3
    77Author: rfrankel
    88Author URI: http://plugins.swampedpublishing.com/
     
    161161            <?php
    162162            // 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" );
    164164            // The Loop
    165165            while ($wp_super_faq_query->have_posts()) : $wp_super_faq_query->the_post();
Note: See TracChangeset for help on using the changeset viewer.