【发布时间】:2017-07-22 16:08:47
【问题描述】:
我想在 single.php 仅显示当前帖子中的类别。我正在使用此代码,但它显示了所有正在使用的类别......我该怎么办?
<nav class="post-navigation">
<?php $args = array(
"hide_empty" => 1,
"type" => "post",
"orderby" => "name",
"order" => "ASC" );
$categories = get_categories( $args );
foreach ( $categories as $category ) {
echo ' <a href="' . get_category_link( $category->term_id ) . '">' . $category->name . '</a>';}
?>
</nav>
【问题讨论】:
-
您是否尝试将其包装在标准的 wordpress 循环中?
标签: php wordpress post categories