這個外掛並未在最新的 3 個 WordPress 主要版本上進行測試。開發者可能不再對這個外掛進行維護或提供技術支援,並可能會與更新版本的 WordPress 產生使用上的相容性問題。

REST API Search

描述

REST API Search

This is only for Version 2 of the REST API Plugin

This adds the missing functionality of Search into the WordPress REST API.
The issue being with the current REST API Version 2, you can only search on a per post_type basis.

/wp-json/wp/v2/posts?filter[s]=apples

/wp-json/wp/v2/pages?filter[s]=apples

What this plugin does.

Adds the search functionality for all posts types except revisions and types with ‘exclude_from_search’ set to true.

/wp-json/wp/v2/search/apples

In case of a multi word string, just replaces the spaces with plus signs.

/wp-json/wp/v2/search/apples+pears

Also adds easy paging

page 2:

/wp-json/wp/v2/search/apples+pears/2

page 3:

/wp-json/wp/v2/search/apples+pears/3

Github

安裝

This section describes how to install the plugin and get it working.

e.g.

  1. Upload the plugin files to the /wp-content/plugins/rest-api-search directory, or install the plugin through the WordPress plugins screen directly.
  2. Activate the plugin through the ‘Plugins’ screen in WordPress

常見問題

How do I use this plugin?

This plugin is meant to be used by experienced developers. You can access the search by going to your WordPress URL, and adding the following to the end of the URL: /wp-json/wp/v2/search/
After the search/ you put any keywords you’re searching for, replaces spaces with plus (+) signs.

評價

閱讀全部1個評價

貢獻者及開發者

“REST API Search” 是一個開源的軟體。以下的人對這個外掛作出了貢獻。

貢獻者

將 REST API Search 外掛本地化為台灣繁體中文版。

對開發相關資訊感興趣?

任何人均可瀏覽程式碼、查看 SVN 存放庫,或透過 RSS 訂閱開發記錄

修改日誌

1.0

  • Initial Version
  • Fully working version which searches all post types except revisions and types with ‘exclude_from_search’ set to true.

1.1

  • Restructured code to allow for custom fields added in by other plugins

1.2

  • Bug Fix – namespace variable of class needs to be protected.

1.3

  • Now allows for encoded characters and numbers in the url

1.4

  • WordPress’s posts per page settings now are used.