Changeset 465818
- Timestamp:
- 11/21/2011 10:37:34 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
r463289 r465818 5 5 Requires at least: 3.1 6 6 Tested up to: 3.2.1 7 Stable tag: 0.5. 27 Stable tag: 0.5.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. … … 52 52 == Changelog == 53 53 54 = 0.5.3 = 55 Fixed an error with the show_categories shortcode. This bug causes funny line breaks in some themes. 56 54 57 = 0.5.2 = 55 58 Minor update to try and add better instructions for FAQ categories. … … 76 79 == Upgrade Notice == 77 80 81 = 0.5.3 = 82 Fixed an error with the show_categories shortcode. This bug causes funny line breaks in some themes. 83 78 84 = 0.5.2 = 79 85 Minor updated changing some instructions in the back-end. Not a required update but recommended. -
wp-super-faq/trunk/wp_super_faq.php
r463289 r465818 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.5. 26 Version: 0.5.3 7 7 Author: rfrankel 8 8 Author URI: http://plugins.swampedpublishing.com/ … … 166 166 // The Loop 167 167 while ($wp_super_faq_query->have_posts()) : $wp_super_faq_query->the_post(); 168 $returner .= the_title( 169 "<h4><a class='wp-super-faq-question-closed' id='wp-super-faq-question-$post_category_slug-$wp_super_faq_i' 170 href='" . get_permalink() . "' title='" . the_title_attribute( 'echo=0' ) . "' rel='question'><span class='wp-super-faq-triangle'>▶</span> ", '</a></h4>', false ); 168 $returner .= the_title( "<h4><a class='wp-super-faq-question-closed' id='wp-super-faq-question-$post_category_slug-$wp_super_faq_i' href='" . get_permalink() . "' title='" . the_title_attribute( 'echo=0' ) . "' rel='question'><span class='wp-super-faq-triangle'>▶</span> ", '</a></h4>', false ); 171 169 172 170 $returner .= "<div class='wp-super-faq-answer' id='wp-super-faq-question-$post_category_slug-$wp_super_faq_i' style='display: none'>";
Note: See TracChangeset
for help on using the changeset viewer.