I would like to do the WP_Query with the arguments setting as below, plus "WHERE ID > $post_id" (specific post id). Pls advise how to add this WHERE clause into the $arg setting? Thanks a lot.
$args = array (
'cat' => $category_id,
'nopaging' => false,
'posts_per_page' => '5',
'order' => 'DESC',
'orderby' => 'ID'
);
$query = new WP_Query( $args );