How WordPress searches for article content without searching page pages

Source: Internet
Author: User

How do I search for only the specified article types in wordpress? Learned on the http://www.wpbeginner.comThe Hook "pre_get_posts" method provided by WP may be implementedThis hook method allows you to process the query criteria before querying the database, placing the following code in the functin.php of the topic to search for only the article content
  
 
  1. /**
  2. * [只对指定的类型进行搜索]
  3. * @param [type] $query [搜索的参数]
  4. */
  5. function SearchFilter($query) {
  6. //仅搜索时
  7. if ($query->is_search) {
  8. //设定指定的文章类型,这里仅搜索文章
  9. $query->set(‘post_type‘, ‘post‘);
  10. //指定文章和自定义类型
  11. //$query->set(‘post_type‘, array(‘post‘, ‘custom-post-type‘));
  12. //排除指定的文章ID号
  13. //$query-->set( ‘post__not_in‘, array( 10,11,20,105 ) );
  14. //搜索指定的类型
  15. //$query->set(‘cat‘,‘8,15‘);
  16. //搜索条件....

  17. }
  18. return $query;
  19. }
  20. add_filter(‘pre_get_posts‘,‘SearchFilter‘);

Reference: WordPress Plugin api/action Reference/pre Get posts

How to Exclude Pages from WordPress Search Results

Exclude specific pages, articles, and categories from WordPress search results



From for notes (Wiz)

How WordPress searches for article content without searching page pages

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.