WordPress获取当前文章Tag列表函数:get_the_tag_list

WordPress模板函数get_the_tag_list用于获取当前函数列表,需要用在The Loop主循环…

WordPress模板函数get_the_tag_list用于获取当前函数列表,需要用在The Loop主循环中,如果在主循环之外使用,需要传递文章ID。

get_the_tag_list( string $before = '', string $sep = '', string $after = '', integer $id = 0 )

函数参数

$before

字符串值,默认为空

在链接前输出

$sep

字符串值,默认为空

在链接之间输出,用于分隔多个函数

$after

字符串值,默认为空

在链接后输出

$id

整数型,默认值:当前文章ID

指定一个文章ID,用于输出该文章的函数

函数使用示例

<?php echo get_the_tag_list('<p>函数: ', ', ', '</p>'); ?>

扩展阅读

get_the_tag_list()函数位于:wp-includes/category-template.php

相关函数:

  • get_tag()
  • get_tag_link()
  • get_tags()
  • get_the_tags()
  • is_tag()
  • the_tags()
  • single_tag_title()
  • tag_description()
  • wp_generate_tag_cloud()
  • wp_tag_cloud()
类别:WordPress函数讲解

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT

登录 账号发表你的看法,还没有账号?立即免费 注册