0
我想通過分類獲得幾個帖子。所以我嘗試使用get_posts()函數:按類別獲取帖子
<?php $args = array(
'numberposts' => '3',
'post_status' => 'publish',
'orderby' => 'DESC'
'category' => '91'
);
$recent_posts = wp_get_recent_posts($args);?>
<?php echo get_the_date('F j, Y',$recent_posts["ID"])?>
但它不起作用。我怎樣才能通過分類獲得帖子?