get_tag
函数
get_tag ( $tag, $output = OBJECT, $filter = 'raw' )
- 参数
-
-
(int|WP_Term|object)
$tag
A tag ID or object.- Required: 是
-
(string)
$output
Optional. The required return type. One of OBJECT, ARRAY_A, or ARRAY_N, which correspond to a WP_Term object, an associative array, or a numeric array, respectively. Default OBJECT.- Required: 否
- Default: OBJECT
-
(string)
$filter
Optional. How to sanitize tag fields. Default ‘raw’.- Required: 否
- Default: ‘raw’
-
(int|WP_Term|object)
- 返回值
-
- (WP_Term|array|WP_Error|null) Tag data in type defined by $output parameter. WP_Error if $tag is empty, null if it does not exist.
- 定义位置
-
-
wp-includes/category.php
, line 339
-
wp-includes/category.php
- 引入
- 2.3.0
- 弃用
- –
Retrieves a post tag by tag ID or tag object.
If you pass the $tag parameter an object, which is assumed to be the tag row
object retrieved from the database, it will cache the tag data.
If you pass $tag an integer of the tag ID, then that tag will be retrieved
from the database, if it isn’t already cached, and passed back.
If you look at get_term(), both types will be passed through several filters
and finally sanitized based on the $filter parameter value.
function get_tag( $tag, $output = OBJECT, $filter = 'raw' ) { return get_term( $tag, 'post_tag', $output, $filter ); }
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。