【发布时间】:2012-07-14 23:03:51
【问题描述】:
我正在尝试列出我最近发布的帖子,同时显示他们现在属于哪个类别
<?php $args = array( 'numberposts' => 30) ;
$recent_posts = wp_get_recent_posts( $args );
foreach( $recent_posts as $recent ){
echo '<li>
<a href="'.get_permalink($recent["ID"]).'" title="Look'.esc_attr($recent["post_title"]).'" > '.$recent["post_title"].'</a> </li> '; } ?>
这会显示帖子,但我希望它也显示类别名称。
任何帮助都会很棒,
谢谢
【问题讨论】:
-
我尝试添加一个变量 $cats 但是当它显示页面时它打印出数组 10) ; $cats = get_the_category(); $recent_posts = wp_get_recent_posts($args); foreach( $recent_posts as $recent ) { echo '
- '.$recent["post_title"].' '.$cats.'
'; } ?>
标签: wordpress categories