คำสั่ง offset บทความในหน้า Archive

คำสั่งสำหรับสั่ง offset บทความที่อยู่ในหน้า Archive หรือ หน้า Category ใน loop หลักของ Archive.php หรือ Category.php

ตัวอย่างโค้ด

add_action(‘pre_get_posts’, ‘skip_posts_wordpress_archive_cpt_func’, 50);
function skip_posts_wordpress_archive_cpt_func($query){
if(!is_admin() && $query->is_archive() && $query->is_main_query()){
$query->set(‘offset’, 3);
}
}

ที่มา

toolset.com