我只想从当前帖子中显示 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>
Run Code Online (Sandbox Code Playgroud)