Plugin Directory

Changeset 2907080


Ignore:
Timestamp:
05/02/2023 03:45:00 PM (3 years ago)
Author:
vrpr
Message:

v1.0.2

Location:
wdv-ajax-search/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • wdv-ajax-search/trunk/includes/class-wdv-ajax-search-shortcode.php

    r2716038 r2907080  
    66
    77class Wdv_Ajax_Search_Shortcode {
    8 
     8public string $shortcode;
    99    public function __construct() {
    1010        add_shortcode( 'wdvajaxsearch', array( $this, 'shortcode' ) );
     
    2121    public function shortcode($atts) {
    2222    global $wdvajaxsearch_atts;
    23 
    24     $wdvajaxsearch_atts   = shortcode_atts( array('form_name'    => ''), $atts, 'wdvajaxsearch' );
     23    $shortcode = 'wdvajaxsearch';
     24    $wdvajaxsearch_atts   = shortcode_atts( array('form_name'    => ''), $atts, $shortcode );
    2525    $template = new SC101_Template_Loader1();
    2626
  • wdv-ajax-search/trunk/public/class-wdv-ajax-search-public.php

    r2802068 r2907080  
    171171        //---------------------------------------------------     
    172172        public function wdv_ajax_search_shortcode() {
    173             $this->shortcode = new Wdv_Ajax_Search_Shortcode();
     173            $shortcode = new Wdv_Ajax_Search_Shortcode();
    174174        }
    175175}
  • wdv-ajax-search/trunk/readme.txt

    r2856537 r2907080  
    44Tags: search, live search, search plugin, ajax, live
    55Requires at least: 5.2
    6 Tested up to: 6.1.1
     6Tested up to: 6.2
    77Stable tag: 1.0.0
    88Requires PHP: 7.0
     
    8484= 1.0.0 =
    8585= 1.0.1 =
     86= 1.0.2 =
    8687
    8788== Upgrade Notice ==
     
    8990= 1.0.0 =
    9091= 1.0.1 =
     92= 1.0.2 =
  • wdv-ajax-search/trunk/wdv-ajax-search.php

    r2802068 r2907080  
    1717 * Plugin URI:        https://wdvillage.com/product/wdv-ajax-search/
    1818 * Description:       With this plugin you can create different search forms for different post types and put their shortcode on the corresponding page.
    19  * Version:           1.0.1
     19 * Version:           1.0.2
    2020 * Author:            wdvillage
    2121 * Author URI:        https://wdvillage.com/
Note: See TracChangeset for help on using the changeset viewer.