has_post_format

函数
has_post_format ( $format = array(), $post = null )
参数
  • (string|string[]) $format Optional. The format or formats to check.
    Required:
    Default: array()
  • (WP_Post|int|null) $post Optional. The post to check. Defaults to the current post in the loop.
    Required:
    Default: null
返回值
  • (bool) True if the post has any of the given formats (or any format, if no format specified), false otherwise.
定义位置
相关方法
set_post_formatget_post_format_post_format_linkhas_post_parent_post_format_request
引入
3.1.0
弃用
-

has_post_format – 这是一个WordPress函数,用于检查当前文章是否有一个特定的文章格式分配给它。文章格式是预定义的格式,可以用来以标准化的方式显示不同类型的内容,如画廊、视频或音频文章。has_post_format函数接收一个参数,即文章格式的名称,如果文章有分配给它的格式,则返回true。

检查一个文章是否有任何给定的格式,或任何格式。

function has_post_format( $format = array(), $post = null ) {
	$prefixed = array();

	if ( $format ) {
		foreach ( (array) $format as $single ) {
			$prefixed[] = 'post-format-' . sanitize_key( $single );
		}
	}

	return has_term( $prefixed, 'post_format', $post );
}

常见问题

FAQs
查看更多 >