强大的pre_get_posts

Posted Emdrive

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了强大的pre_get_posts相关的知识,希望对你有一定的参考价值。

pre_get_posts是一个强大的文章过滤器

   参考1:  

function return_only_selected_category() {
    if ( isset($_REQUEST[‘s‘]) && isset($_REQUEST[‘cat‘]) ){ //若为搜索页面,且有cat值传入
        global $wp_query;
        $desired_cat = $_REQUEST[‘cat‘]; //要搜索的分类
        $excluded = get_categories("hide_empty=false&exclude={$desired_cat}"); //要排除的分类
        $wp_query->query_vars[‘cat‘] = "-{$excluded}"; //除了要搜索的,其它都排除
        $wp_query->query_vars[‘post_type‘] ="type_product";
        //还可添加其它条件,比如要搜索的文章类型$wp_query->query_vars[‘post_type‘] ="product";
    }
}
add_filter(‘pre_get_posts‘, ‘return_only_selected_category‘);

参考2:

//文章显示过滤
function hwl_home_pagesize( $query ) {
    $num_per_page = get_field(‘cate_num‘ , ‘options‘);
    if(empty($num_per_page)){
        $num_per_page = 12;
    }
if ( is_archive() ) {
    $query->set( ‘posts_per_page‘,  $num_per_page);
    return;
}
}
add_action( ‘pre_get_posts‘, ‘hwl_home_pagesize‘, $num_per_page);

参考3:

// Exclude Pages from Search Results
function excludePages($query) {
    if ($query->is_search) {
        $query->set(‘post_type‘, array(‘post‘, ‘custom-post-type‘));
    }
        return $query;
}
if (!is_admin())
add_filter(‘pre_get_posts‘,‘excludePages‘);

 

以上是关于强大的pre_get_posts的主要内容,如果未能解决你的问题,请参考以下文章

markdown 使用pre_get_posts

SnippetsLab for Mac 1.9 中文共享版 – 强大的代码收藏管理工具

php 在标准循环上设置查询参数,而无需使用pre_get_posts过滤器编写自定义wp查询

php 在标准循环上设置查询参数,而无需使用pre_get_posts过滤器编写自定义wp查询

从零开始配置vim(27)——代码片段

从零开始配置vim(27)——代码片段