标签列表的 Wordpress 简码

Wordpress shortcode for tag list

我需要在 post 中的确切位置插入(post 的)标签。 (默认:他们在后面)

据我了解,唯一的方法是使用短代码并在函数中编写其描述。我认为它很简单,包括 "print $tags_list",但我还没有写出所需的整段代码。
你能帮助我吗?或者建议另一种方法来解决我的问题?
PS: 也许还有一种方法是在post里面插入标签代码,但是wordpress编辑器不理解

除非位置根据 post 发生变化,否则您真的不需要简码。

要在您的模板中呈现标签(您可以移动代码):

 <?php the_tags(); ?>

如果你想制作简码:

function sc_taglist(){

    return get_the_tag_list();
}
add_shortcode('tags', 'sc_taglist');

并使用[标签]