Plugin Directory

Changeset 232497


Ignore:
Timestamp:
04/23/2010 08:07:03 PM (16 years ago)
Author:
theDI
Message:

v 1.0.1

Location:
hide-categories/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • hide-categories/trunk/hide-categories.admin.php

    r150754 r232497  
    88    echo "<select multiple=\"true\" size=\"7\" name=\"$var\" id=\"$var\" style=\"height:150px;\">\n";
    99
    10     forEach( $arrValues as $arr ) {
     10    foreach( $arrValues as $arr ) {
    1111       
    12         $extra = "";   
    13         if( in_array( $arr[ 0 ], $arrSelected ) ) { $extra = " selected=\"true\""; }
    14 
     12        $extra = "";
     13        if( @in_array( $arr[ 0 ], $arrSelected ) ) { $extra = " selected=\"true\""; }
    1514        echo "<option value=\"" . $arr[ 0 ] . "\"$extra>" . $arr[ 1 ] . "</option>\n";
    1615
  • hide-categories/trunk/hide-categories.php

    r150761 r232497  
    55Plugin URI:   http://www.thedeveloperinside.com/resources/hide-categories/
    66Description:  Hide one o more categories when you use the_category tag. No exclude post, but only hide a category name in template view.
    7 Version:      1.0.0
     7Version:      1.0.1
    88Author:       Eduardo Chiaro
    99Author URI:   http://www.eduardochiaro.it/
  • hide-categories/trunk/readme.txt

    r183428 r232497  
    77Stable tag: trunk
    88
    9 Hide one o more categories when you use the_category tag. No exclude post, but only hide a category name in template view.
     9Hide one or more categories when you use the_category tag. No exclude post, but only hide a category name in template view.
    1010
    1111== Description ==
    12 Hide one o more categories when you use the_category tag. No exclude post, but only hide a category name in template view.
     12Hide one or more categories when you use the_category tag. No exclude post, but only hide a category name in template view.
    1313Example?
    1414You use a category called "featured" in your template but you don't want it see? Use Hide Categories
     
    2929== Changelog ==
    3030
     31= 1.0.1 =
     32* bugfix
     33
    3134= 1.0.0 =
    32 first release
     35* first release
Note: See TracChangeset for help on using the changeset viewer.