返回的标记对象get_the_tags()
使用WP_term
班通过检查函数的源代码可以看到这一点。评论的最后一行提到了这个类。
function get_the_tags( $id = 0 ) {
/**
* Filters the array of tags for the given post.
*
* @since 2.3.0
*
* @see get_the_terms()
*
* @param WP_Term[] $terms An array of tags for the given post.
*/
return apply_filters( \'get_the_tags\', get_the_terms( $id, \'post_tag\' ) );
}