Plugin Directory

Changeset 598555


Ignore:
Timestamp:
09/13/2012 04:07:48 PM (14 years ago)
Author:
developingtheweb
Message:

'Trunk'

Location:
quicksand-jquery-post-filter/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • quicksand-jquery-post-filter/trunk/quicksand.php

    r595975 r598555  
    55Description: Use the Jquery Quicksand to filter posts by categories.
    66Author: Mark Stockton
    7 Version: 1.5
     7Version: 1.6
    88Author URI: http://www.developingtheweb.co.uk
    99*/
     
    5757$limit = get_option('post_limit');
    5858
    59 
    6059 global $post;
    61  $args = array('numberposts' => $limit, 'category' => $quicksand_category1, 'category' => $quicksand_category2, 'category' => $quicksand_category3, 'category' => $quicksand_category4, 'category' => $quicksand_category5, 'category' => $quicksand_end);
     60 $args = array('numberposts' => $limit, 'category' => "'" . $quicksand_category1 . ',' . $quicksand_category2 . ',' . $quicksand_category3 . ',' . $quicksand_category4 . ',' . $quicksand_category5 . ',' . $quicksand_end . "'");
    6261 $myposts = get_posts( $args );
    6362 foreach( $myposts as $post ) : setup_postdata($post);
  • quicksand-jquery-post-filter/trunk/readme.txt

    r595976 r598555  
    77Requires at least: 3.0
    88Tested up to: 3.4.1
    9 Stable Tag: 1.5
     9Stable Tag: 1.6
    1010License: GPLv2 or later
    1111License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4040== Changelog ==
    4141
     42= 1.6=
     43
     44    1. 'All' filter option now does not contain all the post categories but only the posts from selected filter categories. Thanks to Sparksight for bringing this to my attention.
     45
    4246= 1.5 =
    4347
Note: See TracChangeset for help on using the changeset viewer.