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.
定义位置
  • wp-includes/post-formats.php
    , line 49
引入
3.1.0
弃用

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

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