【在WordPress中将帖子的类别名称显示为短代码的一部分】我正在尝试显示帖子的类别名称, 但是它不起作用。我该如何工作?我在function.php中写了以下内容
function wptuts_recentpost2($atts, $content=null){
$getpost = get_posts( array('number' =>
1, 'offset' =>
1) );
$getpost = $getpost[0];
$return = get_the_post_thumbnail($getpost->
ID) . "<
br />
<
a class='post_title' href='" . get_permalink($getpost->
ID) . "'>
" . $getpost->
post_title . "<
/a>
.$getpost->
cat_ID. <
br />
" . $getpost->
post_excerpt . "…";
$return .= "<
br />
<
br />
";
return $return;
}
add_shortcode('newestpost2', 'wptuts_recentpost2');
#1get_posts()函数返回不包含有关分类法信息的post对象数组。
正如@ condini-mastheus正确指出的那样, 你需要使用get_the_category()来获取每个帖子的类别:
function wptuts_recentpost2( $atts, $content=null ){$getpost = get_posts( array('number' =>
1, 'offset' =>
1) );
$getpost = $getpost[0];
$category = get_the_category( $getpost->
ID );
$return = get_the_post_thumbnail($getpost->
ID) . "<
br />
<
a class='post_title' href='" . get_permalink($getpost->
ID) . "'>
" . $getpost->
post_title . "<
/a>
" . $category[0]->
cat_name . "<
br />
" . $getpost->
post_excerpt . "…";
$return .= "<
br />
<
br />
";
return $return;
}
add_shortcode('newestpost2', 'wptuts_recentpost2');
#2尝试添加
$category = get_category($getpost->
cat_ID)
并且比替换
$getpost->
cat_ID
to
$category->
name
推荐阅读
- 显示不带html标签的产品变动价格
- 显示每个类别中的帖子数
- 在WordPress页面中以表格格式显示数据库中的数据
- 在主题上显示高级自定义字段
- 以不同的方式显示数组
- 在类别页面上内联显示”添加到购物车”按钮
- 在带有子项的菜单项上禁用标记[WordPress]
- Flutter中设置Android的应用名称和图标(android,ios,web)#yyds干货盘点#
- #yyds干货盘点#使用Java实现一致性hash算法(consistent hashing)「上」