Changeset 1183756
- Timestamp:
- 06/18/2015 08:06:46 PM (11 years ago)
- Location:
- wp-search-live
- Files:
-
- 29 added
- 1 edited
-
tags/0.7 (added)
-
tags/0.7/LICENSE.txt (added)
-
tags/0.7/README.txt (added)
-
tags/0.7/index.php (added)
-
tags/0.7/public (added)
-
tags/0.7/public/assets (added)
-
tags/0.7/public/assets/css (added)
-
tags/0.7/public/assets/css/index.php (added)
-
tags/0.7/public/assets/css/style.css (added)
-
tags/0.7/public/assets/index.php (added)
-
tags/0.7/public/assets/js (added)
-
tags/0.7/public/assets/js/util--wp-api.js (added)
-
tags/0.7/public/assets/js/wp-live-search.js (added)
-
tags/0.7/public/assets/sass (added)
-
tags/0.7/public/assets/sass/source (added)
-
tags/0.7/public/assets/sass/source/_base.scss (added)
-
tags/0.7/public/assets/sass/source/_loader.scss (added)
-
tags/0.7/public/assets/sass/source/_mixins.scss (added)
-
tags/0.7/public/assets/sass/source/_variables.scss (added)
-
tags/0.7/public/assets/sass/style.scss (added)
-
tags/0.7/public/class-wp-live-search.php (added)
-
tags/0.7/public/includes (added)
-
tags/0.7/public/includes/class.assets.php (added)
-
tags/0.7/public/includes/class.shortcode.php (added)
-
tags/0.7/public/includes/template-function.php (added)
-
tags/0.7/public/includes/underscore-template.php (added)
-
tags/0.7/readme.md (added)
-
tags/0.7/uninstall.php (added)
-
tags/0.7/wp-live-search.php (added)
-
trunk/README.txt (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-search-live/trunk/README.txt
r1182063 r1183756 6 6 Requires at least: 3.5.1 7 7 Tested up to: 4.2.1 8 Stable tag: 0. 68 Stable tag: 0.7 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 14 14 == Description == 15 15 16 WP Live Search is a search plugin for WordPress that returns results as the user types for what they are looking. It supports posts, pages , and custom post types.16 WP Live Search is a search plugin for WordPress that returns results as the user types for what they are looking. It supports posts, pages and custom post types. 17 17 18 18 This is very much a working prototype, so please log any issues you find on the Github repo below. … … 20 20 [https://github.com/bearded-avenger/wp-live-search](https://github.com/bearded-avenger/wp-live-search) 21 21 22 WP REST API plugin required!23 24 22 Add the shortcode `[wp_live_search]` to a page or something. There's a few shortcode attributes that you can use, and are as follows: 25 23 26 type= “”27 Your choices are `posts` or `pages`. Defaults to `posts`. 24 type="" 25 Your choices are `posts` or `pages`. Defaults to `posts`. You can also pass `type,type` to search multiple post types. For example type="recipes,books" 28 26 29 placeholder=“” 27 multi="" 28 By default this is turned off. Set this to true only if you're using multiple post types above. 29 30 placeholder="" 30 31 The text displayed in the input. Defaults to `Search...`. 31 32 32 results= “”33 results="" 33 34 The text displayed for the results. Defaults to `entries found`. 34 35 35 target=“” 36 An optional target UL parent to send the search results to. Example target="#someotherdiv". 36 number="" 37 Total search result to return. Default is 20 38 39 compact="true" 40 Makes a tiny WP Live Search for use in header widgets and such 41 42 target="" 43 An optional target UL parent to send the search results to. Example `target="#someotherdiv"`. 37 44 38 45 … … 67 74 68 75 = Does it support custom post types? = 69 Not yet 76 Yes 70 77 71 78 = Can I use multiple on one page? = … … 80 87 81 88 == Changelog == 89 90 = 0.7 = 91 * fixed results being returned in reverse order 92 * added multiple post type support by using type="typeone,typetwo" multi="true" 93 * added an option to set the number of results returned 94 * added a "compact" mode option to that it can be used in places like a header widget 82 95 83 96 = 0.6 =
Note: See TracChangeset
for help on using the changeset viewer.