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



get_post_mime_type › WordPress Function

Seit2.0.0
Veraltetn/v
get_post_mime_type ( $post = null )
Parameter:
  • (int|WP_Post) $post Optional. Post ID or post object. Defaults to global $post.
    Erforderlich: Nein
    Standard: null
Gibt zurück:
  • (string|false) The mime type on success, false on failure.
Definiert in:
Codex:

Retrieves the mime type of an attachment based on the ID.

This function can be used with any post type, but it makes more sense with attachments.


Quellcode

function get_post_mime_type( $post = null ) {
	$post = get_post( $post );

	if ( is_object( $post ) ) {
		return $post->post_mime_type;
	}

	return false;
}