Skip to content

Instantly share code, notes, and snippets.

View dev-sahab's full-sized avatar
🙂
First, solve the problem.Then write the code

Sahab Uddin dev-sahab

🙂
First, solve the problem.Then write the code
View GitHub Profile
@ThemePure
ThemePure / Blog Query
Last active January 27, 2025 18:08
WP Query With Cat
$args = array(
'post_type' => 'post',
'order' => $settings['order'],
'orderby' => $settings['order_by'],
'offset' => $offset,
'posts_per_page' => $post_per_page,
'post__not_in'=> $settings['post_exclude'],
'post__in'=> $settings['post_inlude'],
'ignore_sticky_posts' => $ignore_sticky_posts
);