这是应该进入的代码functions.php
文件
function exclude_first_3_posts($query){
if(!is_admin() && $query->is_main_query() && is_home() && !is_front_page()){
$query->set(\'post_type\',\'post\');
$query->set(\'offset\',3);
$query->set(\'order\',\'desc\');
}
}
add_action(\'pre_get_posts\',\'exclude_first_3_posts\');