Version Description
Download this release
Release Info
Developer | pmenard |
Plugin | Simply Exclude |
Version | 1.6.1 |
Comparing to | |
See all releases |
Code changes from version 1.6 to 1.6.1
- readme.txt +17 -10
- screenshot-1.png +0 -0
- screenshot-2.png +0 -0
- simplyexclude.php +2 -2
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: Paul Menard
|
|
3 |
Donate link: http://www.codehooligans.com
|
4 |
Tags: admin, posts, pages, categories, tags, exclude, include, is_front, is_archive, is_search, is_feed
|
5 |
Requires at least: 2.3
|
6 |
-
Tested up to: 2.5
|
7 |
-
Stable tag: 1.6
|
8 |
|
9 |
== Description ==
|
10 |
|
@@ -30,17 +30,24 @@ is_feed - When a Feed is viewed/requested.
|
|
30 |
|
31 |
Well you need to be careful when excluding both categories and tags. Since a post can be associated with both there is potential that you have excluded all your posts because they are either members of excluded categories or members or excluded tags.
|
32 |
|
33 |
-
=
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
|
35 |
-
I've not added that feature. A minor version coming soon.
|
36 |
|
37 |
== Screenshots ==
|
38 |
|
39 |
-
|
|
|
|
|
40 |
|
41 |
== Version Histroy ==
|
42 |
-
|
43 |
-
1.0 - 2007-11-20: Initial release
|
44 |
-
1.1 - 2008-12-15: Added logic to work with WP version greater than 2.2
|
45 |
-
1.5 - 20008-04-27 Fixed display issues. Changes 'List' to 'Archive'. Added tags inclusion/exclusion login. Works only with WP 2.3 and greater
|
46 |
-
1.6 - 2008-05-22 Fixed various items. Added format display for Categories and Pages to reveal hierarchy, Disable plugin functions when searching in admin. This also corrected a display exclusion bug when showing categories and pages.
|
3 |
Donate link: http://www.codehooligans.com
|
4 |
Tags: admin, posts, pages, categories, tags, exclude, include, is_front, is_archive, is_search, is_feed
|
5 |
Requires at least: 2.3
|
6 |
+
Tested up to: 2.5.1
|
7 |
+
Stable tag: 1.6.1
|
8 |
|
9 |
== Description ==
|
10 |
|
30 |
|
31 |
Well you need to be careful when excluding both categories and tags. Since a post can be associated with both there is potential that you have excluded all your posts because they are either members of excluded categories or members or excluded tags.
|
32 |
|
33 |
+
= I've excluded Pages but attachments (images) for those pages are showing up. Why? =
|
34 |
+
|
35 |
+
Only the parent Page itself is excluded from searches. By default WordPress does not yet include Pages in search. Make sure you have other search plugins correctly configured to not search attachments.
|
36 |
+
|
37 |
+
= I've excluded a Page via the plugin but it still shows up in my sidebar when wp_list_pages is called. Why? =
|
38 |
+
|
39 |
+
At the time (version 1.6.1) the plugin only effects Pages included in the traditional Search feature on a site. It does not trap all selections of Pages via other internal WordPress functions...yet!
|
40 |
|
|
|
41 |
|
42 |
== Screenshots ==
|
43 |
|
44 |
+
1. Simply Exclude Admin interface showing Category exclusion options.
|
45 |
+
2. Page Admin interface allow for exclusion of Page from search.
|
46 |
+
|
47 |
|
48 |
== Version Histroy ==
|
49 |
+
<p>
|
50 |
+
1.0 - 2007-11-20: Initial release<br />
|
51 |
+
1.1 - 2008-12-15: Added logic to work with WP version greater than 2.2<br />
|
52 |
+
1.5 - 20008-04-27 Fixed display issues. Changes 'List' to 'Archive'. Added tags inclusion/exclusion login. Works only with WP 2.3 and greater.<br />
|
53 |
+
1.6 - 2008-05-22 Fixed various items. Added format display for Categories and Pages to reveal hierarchy, Disable plugin functions when searching in admin. This also corrected a display exclusion bug when showing categories and pages. </p>
|
screenshot-1.png
ADDED
Binary file
|
screenshot-2.png
ADDED
Binary file
|
simplyexclude.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Simply Exclude
|
|
4 |
Plugin URI: http://www.codehooligans.com/2008/04/27/simply-exclude-plugin/
|
5 |
Description: Provides an interface to selectively exclude/include categories, tags and page from the 4 actions used by WordPress. is_front, is_archive, is_search, is_feed.
|
6 |
Author: Paul Menard
|
7 |
-
Version: 1.6
|
8 |
Author URI: http://www.codehooligans.com
|
9 |
|
10 |
Revision history
|
@@ -867,7 +867,7 @@ class SimplyExclude
|
|
867 |
if ($this->in_admin == true)
|
868 |
return;
|
869 |
|
870 |
-
echo "query before<pre>"; print_r($query); echo "</pre>";
|
871 |
if (count($this->default_IsActions['cats']) > 0)
|
872 |
{
|
873 |
foreach ($this->default_IsActions['cats'] as $action_key => $action_val)
|
4 |
Plugin URI: http://www.codehooligans.com/2008/04/27/simply-exclude-plugin/
|
5 |
Description: Provides an interface to selectively exclude/include categories, tags and page from the 4 actions used by WordPress. is_front, is_archive, is_search, is_feed.
|
6 |
Author: Paul Menard
|
7 |
+
Version: 1.6.1
|
8 |
Author URI: http://www.codehooligans.com
|
9 |
|
10 |
Revision history
|
867 |
if ($this->in_admin == true)
|
868 |
return;
|
869 |
|
870 |
+
//echo "query before<pre>"; print_r($query); echo "</pre>";
|
871 |
if (count($this->default_IsActions['cats']) > 0)
|
872 |
{
|
873 |
foreach ($this->default_IsActions['cats'] as $action_key => $action_val)
|