wpseek.com
A WordPress-centric search engine for devs and theme authors



has_post_format › WordPress Function

Since3.1.0
Deprecatedn/a
has_post_format ( $format = array(), $post = null )
Parameters: (2)
  • (string|string[]) $format Optional. The format or formats to check. Default empty array.
    Required: No
    Default: array()
  • (WP_Post|int|null) $post Optional. The post to check. Defaults to the current post in the loop.
    Required: No
    Default: null
Returns:
  • (bool) True if the post has any of the given formats (or any format, if no format specified), false otherwise.
Defined at:
Codex:

Check if a post has any of the given formats, or any format.



Source

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