Plugin Directory

Changeset 1986250


Ignore:
Timestamp:
12/05/2018 06:55:42 PM (7 years ago)
Author:
DesignsAndCode
Message:

typos in admin
5.0 tested

Location:
search-filter/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • search-filter/trunk/of-admin.php

    r1897510 r1986250  
    6060                To display Search &amp; Filter all you need to do is a use a shortcode:<br />
    6161               
    62                 <pre><code class="string">[searchandfilter taxonomies="category,post_tag"]</code></pre>
     62                <pre><code class="string">[searchandfilter fields="search,category,post_tag"]</code></pre>
    6363               
    6464                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 />
     
    6666                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 />
    6767               
    68                 <pre><code class="php">&lt;?php echo do_shortcode( \'[searchandfilter taxonomies="category,post_tag"]\' ); ?&gt;</code></pre>
     68                <pre><code class="php">&lt;?php echo do_shortcode( \'[searchandfilter fields="search,category,post_tag"]\' ); ?&gt;</code></pre>
    6969            </div>';
    7070       
  • search-filter/trunk/of-list-table.php

    r1196498 r1986250  
    191191            "defaultval"    => "&nbsp;",
    192192            "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 &amp; paste!):<pre><code class='string'>[searchandfilter taxonomies=\"search,".$fulltaxonomylist."\"]</code></pre>"
     193            "info"          => "Example using all your public taxonomies (copy &amp; paste!):<pre><code class='string'>[searchandfilter fields=\"search,".$fulltaxonomylist."\"]</code></pre>"
    194194        );
    195195        $counter++;
  • search-filter/trunk/readme.txt

    r1897499 r1986250  
    44Tags: category, filter, taxonomy, search, wordpress, post type, post date
    55Requires at least: 3.5
    6 Tested up to: 4.9
     6Tested up to: 5.0
    77Stable tag: 1.2.10
    88License: GPLv2 or later
     
    3535== Changelog ==
    3636
     37= 1.2.11 =
     38* Fixed - a few typos in the admin screen
     39* Tested with WP 5.0 RC2
     40
    3741= 1.2.10 =
    3842* Fixed - an issue with our syntax highlighting script modifying our shortcodes
    39 
    4043
    4144= 1.2.9 =
  • search-filter/trunk/search-filter.php

    r1897499 r1986250  
    66Author: Designs & Code
    77Author URI: http://www.designsandcode.com/
    8 Version: 1.2.10
     8Version: 1.2.11
    99Text Domain: searchandfilter
    1010License: GPLv2
    1111*/
    12 
    13 // TO DO - i18n http://codex.wordpress.org/I18n_for_WordPress_Developers
    1412
    1513/*
     
    1715*/
    1816if (!defined('SEARCHANDFILTER_VERSION_NUM'))
    19     define('SEARCHANDFILTER_VERSION_NUM', '1.2.10');
     17    define('SEARCHANDFILTER_VERSION_NUM', '1.2.11');
    2018
    2119if (!defined('SEARCHANDFILTER_THEME_DIR'))
Note: See TracChangeset for help on using the changeset viewer.