How can I display search results in a specific category? e.g When searching for word 'articles', search results should display category 'Articles'.
1条回答 默认 最新
doucaishi0077 2016-09-15 06:14关注It should be possible to create this feature with the
post_searchwordpress filter.See: https://codex.wordpress.org/Plugin_API/Filter_Reference/posts_search
The
post_searchfilter is executed before the category check so you should be able to set the category in the query based on the search terms. Beyond that it is a matter of adjusting your template(s) to display the category used by the query.解决 无用评论 打赏 举报