我在首页上的分页仅显示相同的帖子

时间:2019-05-22 10:20:51

标签: wordpress wordpress-theming

我正在用edd开发一个网站,我想将下载档案显示为主页。

我使用了此功能:

add_action("pre_get_posts", "custom_front_page");
function custom_front_page($wp_query){
//Ensure this filter isn't applied to the admin area
if(is_admin()) {
    return;
}

if($wp_query->get('page_id') == get_option('page_on_front')):

    $wp_query->set('post_type', 'download');
    $wp_query->set('page_id', ''); //Empty

    //Set properties that describe the page to reflect that
    //we aren't really displaying a static page
    $wp_query->is_page = 0;
    $wp_query->is_singular = 0;
    $wp_query->is_post_type_archive = 1;
    $wp_query->is_archive = 1;

endif;

}

可以,但是分页仅显示首页

0 个答案:

没有答案
相关问题