wp_get_post_tags()
wp_get_post_tags( int $post_id, array $args = array() )…
wp_get_post_tags( int $post_id, array $args = array() )
检索帖子的标签。
Retrieve the tags for a post.
目录锚点:#说明#参数#源码#笔记
说明(Description)
此函数只有一个默认值,称为“fields”,默认设置为“all”。在wp_get_object_terms()中还可以重写其他默认设置。
参数(Parameters)
参数 | 类型 | 说明 |
---|---|---|
$post_id | (int) | Post ID.不默认为全局$Post的ID。默认值为0。 |
$args | (array) | 标记查询参数。有关支持的参数,请参见WP_Term_Query::uu construct()。 |
源码(Source)
/** * Retrieve the tags for a post. * * There is only one default for this function, called 'fields' and by default * is set to 'all'. There are other defaults that can be overridden in * {@link wp_get_object_terms()}. * * @since 2.3.0 * * @param int $post_id Optional. The Post ID. Does not default to the ID of the * global $post. Defualt 0. * @param array $args Optional. Overwrite the defaults * @return array List of post tags. */ function wp_get_post_tags( $post_id = 0, $args = array() ) { return wp_get_post_terms( $post_id, 'post_tag', $args); }
更新版本 | 源码位置 | 使用 | 被使用 |
---|---|---|---|
2.3.0 | wp-includes/post.php | 5 | 1 |
笔记(Notes)
对于标签为tag2、tag5和tag6的帖子,代码
类别:WordPress 函数手册、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
还没有任何评论,赶紧来占个楼吧!