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



wp_get_post_terms › WordPress Function

Since2.8.0
已弃用n/a
wp_get_post_terms ( $post_id = 0, $taxonomy = 'post_tag', $args = array() )
参数: (3)
  • (int) $post_id Optional. The Post ID. Does not default to the ID of the global $post. Default 0.
    Required: No
    默认:
  • (string|string[]) $taxonomy Optional. The taxonomy slug or array of slugs for which to retrieve terms. Default 'post_tag'.
    Required: No
    默认: 'post_tag'
  • (array) $args { Optional. Term query parameters. See WP_Term_Query::__construct() for supported arguments. @type string $fields Term fields to retrieve. Default 'all'. }
    Required: No
    默认: array()
返回:
  • (array|WP_Error) Array of WP_Term objects on success or empty array if no terms were found. WP_Error object if `$taxonomy` doesn't exist.
定义在:
文档:

Retrieves the terms for a post.



源码

function wp_get_post_terms( $post_id = 0, $taxonomy = 'post_tag', $args = array() ) {
	$post_id = (int) $post_id;

	$defaults = array( 'fields' => 'all' );
	$args     = wp_parse_args( $args, $defaults );

	$tags = wp_get_object_terms( $post_id, $taxonomy, $args );

	return $tags;
}