如何在WordPress帖子中添加可点击的标签和类别?

时间:2019-01-07 00:07:11

标签: php wordpress tags categories

我想将可点击的TagsCategory添加到我的WordPress帖子模板中。我在WordPress帖子中使用PHP显示插件。

这是我的代码:

$posttags = get_the_tags();
if ($posttags) {
    foreach($posttags as $tag) {
        echo $tag->name.'    '; 
    }
}

但是我想显示可点击的标签和类别。 我应该使用什么PHP代码?

1 个答案:

答案 0 :(得分:0)

您可以使用get_tag_link获取标签的链接。看下面的例子:

$posttags = get_the_tags();
if ($posttags) {
  foreach($posttags as $tag) {
    $tag_link = get_tag_link($tag->term_id);
    echo '<a href="' . $tag_link . '">' . $tag->name . '</a>&nbsp;&nbsp; '; 
  }
}

查看WordPress参考:https://codex.wordpress.org/Function_Reference/get_the_tags

显示类别:

$categories = get_categories( array(
    'orderby' => 'name',
    'order'   => 'ASC'
) );

foreach( $categories as $category ) {
    $category_link = '<a href="' . esc_url( get_category_link( $category->term_id ) ) . '">' . $category->name . '</a>';

    echo $category_link;
} 

参考:https://developer.wordpress.org/reference/functions/get_categories/