get_post_format_link
函数
get_post_format_link ( $format )
- 参数
-
-
(string)
$format
The post format slug.- Required: 是
-
(string)
- 返回值
-
- (string|WP_Error|false) The post format term link.
- 定义位置
-
-
wp-includes/post-formats.php
, line 149
-
wp-includes/post-formats.php
- 引入
- 3.1.0
- 弃用
- –
返回一个指向文章格式索引的链接。
function get_post_format_link( $format ) { $term = get_term_by( 'slug', 'post-format-' . $format, 'post_format' ); if ( ! $term || is_wp_error( $term ) ) { return false; } return get_term_link( $term ); }
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。