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



wp_attachment_is_image › WordPress Function

Seit2.1.0
Veraltetn/v
wp_attachment_is_image ( $post = null )
Parameter:
  • (int|WP_Post) $post Optional. Attachment ID or object. Default is global $post.
    Erforderlich: Nein
    Standard: null
Gibt zurück:
  • (bool) Whether the attachment is an image.
Definiert in:
Codex:
Changelog:
  • 4.2.0

Determines whether an attachment is an image.

For more information on this and similar theme functions, check out the {@link Conditional Tags} article in the Theme Developer Handbook.


Quellcode

function wp_attachment_is_image( $post = null ) {
	return wp_attachment_is( 'image', $post );
}