Changeset 232497
- Timestamp:
- 04/23/2010 08:07:03 PM (16 years ago)
- Location:
- hide-categories/trunk
- Files:
-
- 3 edited
-
hide-categories.admin.php (modified) (1 diff)
-
hide-categories.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
hide-categories/trunk/hide-categories.admin.php
r150754 r232497 8 8 echo "<select multiple=\"true\" size=\"7\" name=\"$var\" id=\"$var\" style=\"height:150px;\">\n"; 9 9 10 for Each( $arrValues as $arr ) {10 foreach( $arrValues as $arr ) { 11 11 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\""; } 15 14 echo "<option value=\"" . $arr[ 0 ] . "\"$extra>" . $arr[ 1 ] . "</option>\n"; 16 15 -
hide-categories/trunk/hide-categories.php
r150761 r232497 5 5 Plugin URI: http://www.thedeveloperinside.com/resources/hide-categories/ 6 6 Description: 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. 07 Version: 1.0.1 8 8 Author: Eduardo Chiaro 9 9 Author URI: http://www.eduardochiaro.it/ -
hide-categories/trunk/readme.txt
r183428 r232497 7 7 Stable tag: trunk 8 8 9 Hide one o more categories when you use the_category tag. No exclude post, but only hide a category name in template view.9 Hide one or more categories when you use the_category tag. No exclude post, but only hide a category name in template view. 10 10 11 11 == 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.12 Hide one or more categories when you use the_category tag. No exclude post, but only hide a category name in template view. 13 13 Example? 14 14 You use a category called "featured" in your template but you don't want it see? Use Hide Categories … … 29 29 == Changelog == 30 30 31 = 1.0.1 = 32 * bugfix 33 31 34 = 1.0.0 = 32 first release35 * first release
Note: See TracChangeset
for help on using the changeset viewer.