Version Description
- July 7, 2011 - Categories that do not have any posts in them will now appear on the list of categories.
Download this release
Release Info
Developer | planetmike |
Plugin | Ultimate Category Excluder |
Version | 0.8 |
Comparing to | |
See all releases |
Code changes from version 0.7 to 0.8
- readme.txt +4 -1
- ultimate-category-excluder.php +2 -2
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.planetmike.com/donations/
|
|
4 |
Tags: category, categories, exclude, visible, hidden, hide, invisible, remove
|
5 |
Requires at least: 3.1
|
6 |
Tested up to: 3.2
|
7 |
-
Stable tag: 0.
|
8 |
|
9 |
Ultimate Category Excluder allows you to quickly and easily exclude categories from your front page, archives, and feeds.
|
10 |
|
@@ -22,6 +22,9 @@ Ultimate Category Excluder (UCE - unfortunately the same abbreviation as unsolic
|
|
22 |
|
23 |
== Changelog ==
|
24 |
|
|
|
|
|
|
|
25 |
= 0.7 =
|
26 |
* May 6, 2011 - Added internationalization (i18n) based on Patrick Skiebe's suggestion and code. He has provided a German translation. Feel free to send me other languages if you like.
|
27 |
|
4 |
Tags: category, categories, exclude, visible, hidden, hide, invisible, remove
|
5 |
Requires at least: 3.1
|
6 |
Tested up to: 3.2
|
7 |
+
Stable tag: 0.8
|
8 |
|
9 |
Ultimate Category Excluder allows you to quickly and easily exclude categories from your front page, archives, and feeds.
|
10 |
|
22 |
|
23 |
== Changelog ==
|
24 |
|
25 |
+
= 0.8 =
|
26 |
+
* July 7, 2011 - Categories that do not have any posts in them will now appear on the list of categories.
|
27 |
+
|
28 |
= 0.7 =
|
29 |
* May 6, 2011 - Added internationalization (i18n) based on Patrick Skiebe's suggestion and code. He has provided a German translation. Feel free to send me other languages if you like.
|
30 |
|
ultimate-category-excluder.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Ultimate Category Excluder
|
|
4 |
Plugin URI: http://www.planetmike.com/plugins/ultimate-category-excluder/
|
5 |
Description: Easily exclude categories from your front page, feeds, and archives.
|
6 |
Author: Michael Clark
|
7 |
-
Version: 0.
|
8 |
Author URI: http://www.planetmike.com
|
9 |
Text Domain: UCE
|
10 |
*/
|
@@ -42,7 +42,7 @@ function ksuce_options_page() {
|
|
42 |
<tbody id="the-list">
|
43 |
<?php
|
44 |
//print_r( get_categories() );
|
45 |
-
$cats = get_categories();
|
46 |
$alt = 0;
|
47 |
foreach( $cats as $cat ) {
|
48 |
?>
|
4 |
Plugin URI: http://www.planetmike.com/plugins/ultimate-category-excluder/
|
5 |
Description: Easily exclude categories from your front page, feeds, and archives.
|
6 |
Author: Michael Clark
|
7 |
+
Version: 0.8
|
8 |
Author URI: http://www.planetmike.com
|
9 |
Text Domain: UCE
|
10 |
*/
|
42 |
<tbody id="the-list">
|
43 |
<?php
|
44 |
//print_r( get_categories() );
|
45 |
+
$cats = get_categories('hide_empty=0');
|
46 |
$alt = 0;
|
47 |
foreach( $cats as $cat ) {
|
48 |
?>
|