wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



has_post_format › WordPress Function

Seit3.1.0
Veraltetn/v
has_post_format ( $format = array(), $post = null )
Parameter: (2)
  • (string|string[]) $format Optional. The format or formats to check. Default empty array.
    Erforderlich: Nein
    Standard: array()
  • (WP_Post|int|null) $post Optional. The post to check. Defaults to the current post in the loop.
    Erforderlich: Nein
    Standard: null
Gibt zurück:
  • (bool) True if the post has any of the given formats (or any format, if no format specified), false otherwise.
Definiert in:
Codex:

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



Quellcode

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