Changeset 2907080
- Timestamp:
- 05/02/2023 03:45:00 PM (3 years ago)
- Location:
- wdv-ajax-search/trunk
- Files:
-
- 4 edited
-
includes/class-wdv-ajax-search-shortcode.php (modified) (2 diffs)
-
public/class-wdv-ajax-search-public.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
-
wdv-ajax-search.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wdv-ajax-search/trunk/includes/class-wdv-ajax-search-shortcode.php
r2716038 r2907080 6 6 7 7 class Wdv_Ajax_Search_Shortcode { 8 8 public string $shortcode; 9 9 public function __construct() { 10 10 add_shortcode( 'wdvajaxsearch', array( $this, 'shortcode' ) ); … … 21 21 public function shortcode($atts) { 22 22 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 ); 25 25 $template = new SC101_Template_Loader1(); 26 26 -
wdv-ajax-search/trunk/public/class-wdv-ajax-search-public.php
r2802068 r2907080 171 171 //--------------------------------------------------- 172 172 public function wdv_ajax_search_shortcode() { 173 $ this->shortcode = new Wdv_Ajax_Search_Shortcode();173 $shortcode = new Wdv_Ajax_Search_Shortcode(); 174 174 } 175 175 } -
wdv-ajax-search/trunk/readme.txt
r2856537 r2907080 4 4 Tags: search, live search, search plugin, ajax, live 5 5 Requires at least: 5.2 6 Tested up to: 6. 1.16 Tested up to: 6.2 7 7 Stable tag: 1.0.0 8 8 Requires PHP: 7.0 … … 84 84 = 1.0.0 = 85 85 = 1.0.1 = 86 = 1.0.2 = 86 87 87 88 == Upgrade Notice == … … 89 90 = 1.0.0 = 90 91 = 1.0.1 = 92 = 1.0.2 = -
wdv-ajax-search/trunk/wdv-ajax-search.php
r2802068 r2907080 17 17 * Plugin URI: https://wdvillage.com/product/wdv-ajax-search/ 18 18 * 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. 119 * Version: 1.0.2 20 20 * Author: wdvillage 21 21 * Author URI: https://wdvillage.com/
Note: See TracChangeset
for help on using the changeset viewer.