Generic selectors
Exact matches only
Search in title
Search in content
Post Type Selectors

五月 23, 2022 • 沒有評論 WordPress Post Category Filter in Home Page

function imnobby_home_page_post_filter($query){ if($query->is_home() && $query->is_main_query()) { $query->set('cat', '-72'); // get_the_ID('codedb'); } } add_action('pre_get_posts', 'imnobby_home_page_post_filter');…

閱讀內文