Version Description
- Fixed: Conflict with Yoast WordPress SEO plugin
Download this release
Release Info
Developer | pronskiy |
Plugin | Search Exclude |
Version | 1.0.2 |
Comparing to | |
See all releases |
Code changes from version 1.0.1 to 1.0.2
- readme.txt +5 -2
- search-exclude.php +2 -2
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Contributors: pronskiy
|
3 |
Tags: admin, plugin, search
|
4 |
Requires at least: 3.3
|
5 |
-
Tested up to: 3.
|
6 |
-
Stable tag: 1.0.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -27,6 +27,9 @@ You can also view the list of all the items that are excluded from search on the
|
|
27 |
|
28 |
== Changelog ==
|
29 |
|
|
|
|
|
|
|
30 |
= 1.0.1 =
|
31 |
* Fixed: PHP 5.2 compatibility
|
32 |
|
2 |
Contributors: pronskiy
|
3 |
Tags: admin, plugin, search
|
4 |
Requires at least: 3.3
|
5 |
+
Tested up to: 3.5
|
6 |
+
Stable tag: 1.0.2
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
27 |
|
28 |
== Changelog ==
|
29 |
|
30 |
+
= 1.0.2 =
|
31 |
+
* Fixed: Conflict with Yoast WordPress SEO plugin
|
32 |
+
|
33 |
= 1.0.1 =
|
34 |
* Fixed: PHP 5.2 compatibility
|
35 |
|
search-exclude.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/*
|
3 |
Plugin Name: Search Exclude
|
4 |
Description: Exclude any page or post from the WordPress search results by checking off the checkbox.
|
5 |
-
Version: 1.0
|
6 |
Author: Roman Pronskiy
|
7 |
Author URI: http://pronskiy.com
|
8 |
*/
|
@@ -157,4 +157,4 @@ class SearchExclude
|
|
157 |
}
|
158 |
}
|
159 |
}
|
160 |
-
$
|
2 |
/*
|
3 |
Plugin Name: Search Exclude
|
4 |
Description: Exclude any page or post from the WordPress search results by checking off the checkbox.
|
5 |
+
Version: 1.0.2
|
6 |
Author: Roman Pronskiy
|
7 |
Author URI: http://pronskiy.com
|
8 |
*/
|
157 |
}
|
158 |
}
|
159 |
}
|
160 |
+
$pluginSearchExclude = new SearchExclude();
|