Plugin Directory

Changeset 1030953


Ignore:
Timestamp:
11/22/2014 11:33:28 PM (11 years ago)
Author:
ethanhackett
Message:

Fixed Category Sorting

Location:
post-tiles
Files:
13 added
2 edited

Legend:

Unmodified
Added
Removed
  • post-tiles/trunk/post-tiles.php

    r1030862 r1030953  
    55Description: This plugin displays recent posts as tiles. Posts can choose categories by id and numbeer of posts to display. Example shortcode: [post-tiles] or [post-tiles categories='1,2,4,10' posts='8' excerpt='18'].
    66Author: Ethan Hackett
    7 Version: 1.4.3
     7Version: 1.4.4
    88Author URI: http://www.posttiles.com
    99
     
    369369         // Configure Categories For Query
    370370         if (isset($atts['categories'])) {
    371            $cat_query =  $atts['categories'];
     371           $cat_query =  '&cat='.$atts['categories'];
    372372         } else {
    373373             $cat_query = '';
    374374        }
     375        echo $cat_query;
    375376
    376377         // Configure Number of Posts For Query if empty use 8.
  • post-tiles/trunk/readme.txt

    r1030862 r1030953  
    55Requires at least: 3.0
    66Tested up to: 4.0.0
    7 Stable tag: 1.4.3
     7Stable tag: 1.4.4
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4545
    4646== Changelog ==
     47
     48= 1.4.4 =
     49* Fix category sorting issue
    4750
    4851= 1.4.3 =
Note: See TracChangeset for help on using the changeset viewer.