wpseek.com
WordPress开发者和主题制作者的搜索引擎



wp_get_post_tags › WordPress Function

Since2.3.0
已弃用n/a
wp_get_post_tags ( $post_id = 0, $args = array() )
参数: (2)
  • (int) $post_id Optional. The Post ID. Does not default to the ID of the global $post. Default 0.
    Required: No
    默认:
  • (array) $args Optional. Tag query parameters. Default empty array. See WP_Term_Query::__construct() for supported arguments.
    Required: No
    默认: array()
返回:
  • (array|WP_Error) Array of WP_Term objects on success or empty array if no tags were found. WP_Error object if 'post_tag' taxonomy doesn't exist.
定义在:
文档:

Retrieves 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 wp_get_object_terms().


源码

function wp_get_post_tags( $post_id = 0, $args = array() ) {
	return wp_get_post_terms( $post_id, 'post_tag', $args );
}