Plugin Directory

Changeset 428828


Ignore:
Timestamp:
08/25/2011 11:23:21 PM (15 years ago)
Author:
blepoxp
Message:

Fixed bug that broke plugin in 3.1. Props @ollybenson

Location:
no-sub-category-posts-in-loop
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • no-sub-category-posts-in-loop/tags/0.4/trunk/ft-no-subcats-in-loop.php

    r359355 r428828  
    44 *
    55 * @package No_Sub_Category_Posts_In_Loop
    6  * @version 0.4
     6 * @version 0.5
    77/*
    88Plugin Name: No Sub-Category Posts in Loop
     
    1919
    2020/* Release History
     21 0.5 - Fixed bug that broke plugin in 3.1. Props @ollybenson (http://gln.to/oshcw)
    2122 0.4 - Fixed bug introduced with WordPress 3.1. Added inline docs. Removed filter after main query is built.
    2223 0.3 - Modified directory structure so that plugin may be added and activated from wp-admin
     
    7677            foreach ( $excludes as $key => $value ) {
    7778
    78                 $exs[] = $value->cat_ID;
     79                $exs[] = $value->term_taxonomy_id;
    7980           
    8081            }
  • no-sub-category-posts-in-loop/tags/0.4/trunk/readme.txt

    r359355 r428828  
    33Donate link: http://fullthrottledevelopment.com
    44Tags: loop, categories, cats, posts
    5 Requires at least: 2.7
     5Requires at least: 3.1
    66Tested up to: 3.1
    7 Stable tag: 0.4
     7Stable tag: 0.5
    88
    99Once activated, only posts from the current category are displayed in your loop (no posts from sub cats).
     
    2727== Changelog ==
    2828
     29* 0.5 - Fixed bug that broke plugin in 3.1. Props @ollybenson (http://gln.to/oshcw)
    2930* 0.4 - Fixed bug introduced with WordPress 3.1. Added inline docs. Removed filter after main query is built.
    3031* 0.3 - Modified directory structure so that plugin may be added and activated from wp-admin
  • no-sub-category-posts-in-loop/trunk/ft-no-subcats-in-loop.php

    r359355 r428828  
    44 *
    55 * @package No_Sub_Category_Posts_In_Loop
    6  * @version 0.4
     6 * @version 0.5
    77/*
    88Plugin Name: No Sub-Category Posts in Loop
     
    1919
    2020/* Release History
     21 0.5 - Fixed bug that broke plugin in 3.1. Props @ollybenson (http://gln.to/oshcw)
    2122 0.4 - Fixed bug introduced with WordPress 3.1. Added inline docs. Removed filter after main query is built.
    2223 0.3 - Modified directory structure so that plugin may be added and activated from wp-admin
     
    7677            foreach ( $excludes as $key => $value ) {
    7778
    78                 $exs[] = $value->cat_ID;
     79                $exs[] = $value->term_taxonomy_id;
    7980           
    8081            }
  • no-sub-category-posts-in-loop/trunk/readme.txt

    r359355 r428828  
    33Donate link: http://fullthrottledevelopment.com
    44Tags: loop, categories, cats, posts
    5 Requires at least: 2.7
     5Requires at least: 3.1
    66Tested up to: 3.1
    7 Stable tag: 0.4
     7Stable tag: 0.5
    88
    99Once activated, only posts from the current category are displayed in your loop (no posts from sub cats).
     
    2727== Changelog ==
    2828
     29* 0.5 - Fixed bug that broke plugin in 3.1. Props @ollybenson (http://gln.to/oshcw)
    2930* 0.4 - Fixed bug introduced with WordPress 3.1. Added inline docs. Removed filter after main query is built.
    3031* 0.3 - Modified directory structure so that plugin may be added and activated from wp-admin
Note: See TracChangeset for help on using the changeset viewer.