如何显示带有Get_the_Category的链接类别名称

时间:2018-02-09 作者:Pete

我有一个包含此位的代码段。。。

$output .= \'<li><a href=" \' . get_the_permalink() .\' ">\' . get_the_title() .\'</a> \' . get_the_category() .\' \'.  get_the_time(\'d M Y\') . \'</li>\';
除了get_the_category 一点

1 个回复
最合适的回答,由SO网友:Max Yudin 整理而成

get_the_category() 返回的数组WP_Term 对象。所以

// get all categories objects
$categories = get_the_category();
// get the first category name
if ( ! empty( $categories ) ) {
    $category = $categories[0]->name;
}

$output .= \'<li><a href=" \' . get_the_permalink() . \' ">\';
$output .= get_the_title() . \'</a> \';
$output .= $category .\' \';
$output .= get_the_time(\'d M Y\') . \'</li>\';

结束

相关推荐

WP_LIST_CATEGORIES()-将div添加到每个li?

我正在使用wp_list_categories() 从特定的作者ID打印出每个类别的链接,这很好。然而,我还想添加一个div 致各li 将保留类别的图标。我怎样才能做到这一点?这是我当前的代码:<?php // Display a list of all categories associated with author $cat_array = array(); $args = array( \'author\' =>