_post_format_link

函数


_post_format_link ( $link, $term, $taxonomy )
Access
Private
参数
  • (string)
    $link
    Required:
  • (WP_Term)
    $term
    Required:
  • (string)
    $taxonomy
    Required:
返回值
  • (string)
定义位置
  • wp-includes/post-formats.php
    , line 194
引入
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 );
	}
}