Version Description
- Added some documention & screenshots to plugin page
=
Download this release
Release Info
Developer | DesignsAndCode |
Plugin | Search & Filter |
Version | 1.0.3 |
Comparing to | |
See all releases |
Code changes from version 1.0.2 to 1.0.3
- readme.txt +17 -1
- search-filter.php +2 -2
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link:
|
|
4 |
Tags: wordpress, category, filter, taxonomy, search
|
5 |
Requires at least: 3.5
|
6 |
Tested up to: 3.6
|
7 |
-
Stable tag: 1.0.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -12,13 +12,29 @@ Search and Filtering for Custom Posts, Categories, Tags and Taxonomies
|
|
12 |
|
13 |
== Installation ==
|
14 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
== Frequently Asked Questions ==
|
16 |
|
17 |
== Screenshots ==
|
18 |
|
|
|
|
|
|
|
19 |
== Changelog ==
|
20 |
|
|
|
|
|
|
|
21 |
== Upgrade Notice ==
|
22 |
|
23 |
== Description ==
|
24 |
|
|
|
|
|
|
4 |
Tags: wordpress, category, filter, taxonomy, search
|
5 |
Requires at least: 3.5
|
6 |
Tested up to: 3.6
|
7 |
+
Stable tag: 1.0.3
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
12 |
|
13 |
== Installation ==
|
14 |
|
15 |
+
1. Upload the entire `search-filter` folder to the `/wp-content/plugins/` directory.
|
16 |
+
1. Activate the plugin through the 'Plugins' menu in WordPress.
|
17 |
+
|
18 |
+
You will find 'Search & Filter' menu in your WordPress admin panel.
|
19 |
+
|
20 |
+
For basic usage, you can also have a look at the [plugin homepage](http://www.designsandcode.com/447/wordpress-search-filter-plugin-for-taxonomies/) or refer to the `Search & Filter` menu in your Wordpress admin panel.
|
21 |
+
|
22 |
== Frequently Asked Questions ==
|
23 |
|
24 |
== Screenshots ==
|
25 |
|
26 |
+
1. Example of Search & Filter when used in a widget
|
27 |
+
2. Example of Search & Filter embedded in the header
|
28 |
+
|
29 |
== Changelog ==
|
30 |
|
31 |
+
= 1.0.3 =
|
32 |
+
* Added some documention & screenshots to plugin page
|
33 |
+
|
34 |
== Upgrade Notice ==
|
35 |
|
36 |
== Description ==
|
37 |
|
38 |
+
Search & Filter is a simple search and filtering plugin for WordPress. It is essentially an advancement of the WordPress search box, adding taxonomy filters to really refine your searches.
|
39 |
+
|
40 |
+
You can search by Category, Tag, Custom Taxonomy or any combination of these easily � you can even remove the search box and simply use it as a filtering system for your posts and pages.
|
search-filter.php
CHANGED
@@ -5,7 +5,7 @@ Plugin URI: http://www.designsandcode.com/447/wordpress-search-filter-plugin-for
|
|
5 |
Description: Search and Filtering system for Pages, Posts, Categories, Tags and Taxonomies
|
6 |
Author: Designs & Code
|
7 |
Author URI: http://www.designsandcode.com/
|
8 |
-
Version: 1.0.
|
9 |
Text Domain: searchandfilter
|
10 |
License: GPLv2
|
11 |
*/
|
@@ -16,7 +16,7 @@ License: GPLv2
|
|
16 |
* Set up Plugin Globals
|
17 |
*/
|
18 |
if (!defined('SEARCHANDFILTER_VERSION_NUM'))
|
19 |
-
define('SEARCHANDFILTER_VERSION_NUM', '1.0.
|
20 |
|
21 |
if (!defined('SEARCHANDFILTER_THEME_DIR'))
|
22 |
define('SEARCHANDFILTER_THEME_DIR', ABSPATH . 'wp-content/themes/' . get_template());
|
5 |
Description: Search and Filtering system for Pages, Posts, Categories, Tags and Taxonomies
|
6 |
Author: Designs & Code
|
7 |
Author URI: http://www.designsandcode.com/
|
8 |
+
Version: 1.0.3
|
9 |
Text Domain: searchandfilter
|
10 |
License: GPLv2
|
11 |
*/
|
16 |
* Set up Plugin Globals
|
17 |
*/
|
18 |
if (!defined('SEARCHANDFILTER_VERSION_NUM'))
|
19 |
+
define('SEARCHANDFILTER_VERSION_NUM', '1.0.3');
|
20 |
|
21 |
if (!defined('SEARCHANDFILTER_THEME_DIR'))
|
22 |
define('SEARCHANDFILTER_THEME_DIR', ABSPATH . 'wp-content/themes/' . get_template());
|