_post_format_link

函数
_post_format_link ( $link, $term, $taxonomy )
Access
Private
参数
  • (string) $link
    Required:
  • (WP_Term) $term
    Required:
  • (string) $taxonomy
    Required:
返回值
  • (string)
定义位置
相关方法
get_post_format_linkget_post_format_stringpost_permalinkhas_post_formatget_post_format
引入
3.1.0
弃用
-

_post_format_link: 这个函数用于生成一个指向特定文章格式的存档页面的链接。它需要一个参数,即$format,它是文章格式的标题: 这个函数在WordPress主题中经常被用来显示文章格式存档页的链接。

过滤文章的格式条款链接,删除格式前缀。

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 );
	}
}

常见问题

FAQs
查看更多 >