2013-04-04 94 views

回答

1

您可以通過pre_get_posts修改查詢,然後只需設置偏移量即可。

add_action('pre_get_posts', 'custom_pre_get_posts_query'); 

function custom_pre_get_posts_query($q) { 

    if (! $q->is_main_query()) return; 
    if (! $q->is_post_type_archive()) return; 

    if (! is_admin()) { 
     $q->set('offset', 5); 
    } 

    remove_action('pre_get_posts', 'custom_pre_get_posts_query'); 

} 

(基於this snippet