1

我正在尝试列出我最近的帖子,这些帖子还显示我现在拥有的类别

<?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> ';    } ?>

这会显示帖子,但我希望它也显示类别名称。

任何帮助都会很棒,

谢谢

4

4 回答 4

2
$cats = get_the_category($recent["ID"]);
$cat_name = $cats[0]->name; // for the first category

您可以在循环中尝试此操作(如果您有多个类别)

$cats = get_the_category($recent["ID"]);
foreach($cats as $cat)
{
    echo $cat->name." ";
}
于 2012-07-14T23:13:54.703 回答
1

我能够使用以下方法使其正常工作。

$cats[0]->name." "

因此,在最近的帖子循环中,您可以像这样使用它:

$args = array('numberposts' => 5, 'category' => '4,5' );
$recent_posts = wp_get_recent_posts( $args );    

foreach( $recent_posts as $recent ){
   $cats = get_the_category($recent["ID"]);
   echo '<li><a href="' . get_permalink($recent["ID"]) . '" title="Look '.esc_attr($recent["post_title"]).'">' .   $cats[0]->name." " . $recent["post_title"].'</a> </li> ';
}
于 2015-09-10T02:24:46.087 回答
0

通过使用以下内容,我能够获得一个显示类别然后是标题的列表。

 <?php
  $recentPosts = new WP_Query();
  $recentPosts->query('showposts=30');?>
 <?php while ($recentPosts->have_posts()) : $recentPosts->the_post(); ?>
 <?php the_category(" "); ?>-<a href="<?php the_permalink()?>">  <?php the_title(); ?></a> 
 <?php endwhile; ?><?php wp_reset_query()?>

我永远无法让以下代码在我的原始代码中工作它总是显示为“数组”或 Null(我猜我只是不知道写入它的正确方法)我能够得到它如果我创建了一个帖子并且只想显示该类别而没有其他内容,则显示该类别。

 $cats = get_the_category($recent["ID"]);
 foreach($cats as $cat){
 echo $cat->name." "; }
于 2012-07-15T22:50:57.550 回答
0

我使用了 Jaco 的答案,但是

    $cats[0]->name

给了我每个帖子数组中的第一个类别。我所做的调整是在我的代码中使用增量运算符,一切都很好。

一个非常简化的例子:

    $recent_posts = wp_get_recent_posts( $args );

                    foreach( $recent_posts as $recent ){
                        $i = 0;
                        $cats = get_the_category($recent["ID"]);
                        echo $cats[$i]->name;
                        $i++;
                    }

                    wp_reset_query();
于 2017-04-05T18:50:45.900 回答