_post_format_link
函数
_post_format_link ( $link, $term, $taxonomy )
- Access
- Private
- 参数
-
-
(string)
$link- Required: 是
-
(WP_Term)
$term- Required: 是
-
(string)
$taxonomy- Required: 是
-
(string)
- 返回值
-
- (string)
- 定义位置
-
-
wp-includes/post-formats.php
, line 194
-
wp-includes/post-formats.php
- 引入
- 3.1.0
- 弃用
- –
过滤文章的格式条款链接,删除格式前缀。
function _post_format_link( $link, $term, $taxonomy ) { global $wp_rewrite; if ( 'post_format' !== $taxonomy ) { return $link; } if ( $wp_rewrite->get_extra_permastruct( $taxonomy ) ) { return str_replace( "/{$term->slug}", '/' . str_replace( 'post-format-', '', $term->slug ), $link ); } else { $link = remove_query_arg( 'post_format', $link ); return add_query_arg( 'post_format', str_replace( 'post-format-', '', $term->slug ), $link ); } }
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。