下面是一个函数,它可以做到这一点:
function get_lastest_post_of_category($cat){
$args = array( \'posts_per_page\' => 1, \'order\'=> \'DESC\', \'orderby\' => \'date\', \'category__in\' => (array)$cat);
$post_is = get_posts( $args );
return $post_is[0]->ID;
}
用法:假设我的类别id为22,则:
$last_post_ID = get_lastest_post_of_category(22);
还可以将类别数组传递给此函数。