您可以使用get_the_category_list()
要输出以逗号分隔的类别链接列表,请执行以下操作:
<?php
$args = array( \'numberposts\' => \'5\' );
$recent_posts = wp_get_recent_posts( $args );
foreach( $recent_posts as $recent ){
echo \'<h2><a href="\' . get_permalink($recent["ID"]) . \'">\' . $recent["post_title"].\'</a> </h2> \';
echo \'<p>\' . date_i18n(\'d F Y\', strtotime($recent[\'post_date\'])) .\'</p> \';
echo get_the_category_list( \', \', \'\', $recent["ID"] );
}
wp_reset_query();
?>