Version Description
- Fixed - a few typos in the admin screen
- Tested with WP 5.0 RC2
Download this release
Release Info
Developer | DesignsAndCode |
Plugin | Search & Filter |
Version | 1.2.11 |
Comparing to | |
See all releases |
Code changes from version 1.2.10 to 1.2.11
- of-admin.php +2 -2
- of-list-table.php +1 -1
- readme.txt +6 -3
- search-filter.php +2 -4
of-admin.php
CHANGED
@@ -59,13 +59,13 @@
|
|
59 |
echo '<div class="of-caption">
|
60 |
To display Search & Filter all you need to do is a use a shortcode:<br />
|
61 |
|
62 |
-
<pre><code class="string">[searchandfilter
|
63 |
|
64 |
This will display a search box, a category dropdown and a tag dropdown. You can use the shortcode within posts/pages and widget areas.<br /><br />
|
65 |
|
66 |
To use this within a theme file you simple need to call the `do_shorcode` function with the shortcode above within the theme file:<br />
|
67 |
|
68 |
-
<pre><code class="php"><?php echo do_shortcode( \'[searchandfilter
|
69 |
</div>';
|
70 |
|
71 |
|
59 |
echo '<div class="of-caption">
|
60 |
To display Search & Filter all you need to do is a use a shortcode:<br />
|
61 |
|
62 |
+
<pre><code class="string">[searchandfilter fields="search,category,post_tag"]</code></pre>
|
63 |
|
64 |
This will display a search box, a category dropdown and a tag dropdown. You can use the shortcode within posts/pages and widget areas.<br /><br />
|
65 |
|
66 |
To use this within a theme file you simple need to call the `do_shorcode` function with the shortcode above within the theme file:<br />
|
67 |
|
68 |
+
<pre><code class="php"><?php echo do_shortcode( \'[searchandfilter fields="search,category,post_tag"]\' ); ?></code></pre>
|
69 |
</div>';
|
70 |
|
71 |
|
of-list-table.php
CHANGED
@@ -190,7 +190,7 @@ class OF_Variable_List_Table extends WP_List_Table {
|
|
190 |
"name" => "fields",
|
191 |
"defaultval" => " ",
|
192 |
"options" => "<em>Comma seperated list of any field names and Public Taxonomies:</em><br /><br />search<br />post_date<br />post_types<br /><em>*public taxonomy names</em>",
|
193 |
-
"info" => "Example using all your public taxonomies (copy & paste!):<pre><code class='string'>[searchandfilter
|
194 |
);
|
195 |
$counter++;
|
196 |
|
190 |
"name" => "fields",
|
191 |
"defaultval" => " ",
|
192 |
"options" => "<em>Comma seperated list of any field names and Public Taxonomies:</em><br /><br />search<br />post_date<br />post_types<br /><em>*public taxonomy names</em>",
|
193 |
+
"info" => "Example using all your public taxonomies (copy & paste!):<pre><code class='string'>[searchandfilter fields=\"search,".$fulltaxonomylist."\"]</code></pre>"
|
194 |
);
|
195 |
$counter++;
|
196 |
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: DesignsAndCode
|
|
3 |
Donate link:
|
4 |
Tags: category, filter, taxonomy, search, wordpress, post type, post date
|
5 |
Requires at least: 3.5
|
6 |
-
Tested up to:
|
7 |
-
Stable tag: 1.2.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -34,10 +34,13 @@ The documentation has been updated to include examples almost all configurable o
|
|
34 |
|
35 |
== Changelog ==
|
36 |
|
|
|
|
|
|
|
|
|
37 |
= 1.2.10 =
|
38 |
* Fixed - an issue with our syntax highlighting script modifying our shortcodes
|
39 |
|
40 |
-
|
41 |
= 1.2.9 =
|
42 |
* Fixed - bugs with WP 4.4 compatibility
|
43 |
* Fixed - an issue with operators being case sensitive - they are no longer case sensitive
|
3 |
Donate link:
|
4 |
Tags: category, filter, taxonomy, search, wordpress, post type, post date
|
5 |
Requires at least: 3.5
|
6 |
+
Tested up to: 5.0
|
7 |
+
Stable tag: 1.2.11
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
34 |
|
35 |
== Changelog ==
|
36 |
|
37 |
+
= 1.2.11 =
|
38 |
+
* Fixed - a few typos in the admin screen
|
39 |
+
* Tested with WP 5.0 RC2
|
40 |
+
|
41 |
= 1.2.10 =
|
42 |
* Fixed - an issue with our syntax highlighting script modifying our shortcodes
|
43 |
|
|
|
44 |
= 1.2.9 =
|
45 |
* Fixed - bugs with WP 4.4 compatibility
|
46 |
* Fixed - an issue with operators being case sensitive - they are no longer case sensitive
|
search-filter.php
CHANGED
@@ -5,18 +5,16 @@ 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.2.
|
9 |
Text Domain: searchandfilter
|
10 |
License: GPLv2
|
11 |
*/
|
12 |
|
13 |
-
// TO DO - i18n http://codex.wordpress.org/I18n_for_WordPress_Developers
|
14 |
-
|
15 |
/*
|
16 |
* Set up Plugin Globals
|
17 |
*/
|
18 |
if (!defined('SEARCHANDFILTER_VERSION_NUM'))
|
19 |
-
define('SEARCHANDFILTER_VERSION_NUM', '1.2.
|
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.2.11
|
9 |
Text Domain: searchandfilter
|
10 |
License: GPLv2
|
11 |
*/
|
12 |
|
|
|
|
|
13 |
/*
|
14 |
* Set up Plugin Globals
|
15 |
*/
|
16 |
if (!defined('SEARCHANDFILTER_VERSION_NUM'))
|
17 |
+
define('SEARCHANDFILTER_VERSION_NUM', '1.2.11');
|
18 |
|
19 |
if (!defined('SEARCHANDFILTER_THEME_DIR'))
|
20 |
define('SEARCHANDFILTER_THEME_DIR', ABSPATH . 'wp-content/themes/' . get_template());
|