wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



get_post_format › WordPress Function

Da3.1.0
Deprecaton/a
get_post_format ( $post = null )
Parametri:
  • (int|WP_Post|null) $post Optional. Post ID or post object. Defaults to the current post in the loop.
    Richiesto: No
    Default: null
Ritorna:
  • (string|false) The format if successful. False otherwise.
Definito a:
Codex:

Retrieve the format slug for a post



Sorgenti

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

	if ( ! $post ) {
		return false;
	}

	if ( ! post_type_supports( $post->post_type, 'post-formats' ) ) {
		return false;
	}

	$_format = get_the_terms( $post->ID, 'post_format' );

	if ( empty( $_format ) ) {
		return false;
	}

	$format = reset( $_format );

	return str_replace( 'post-format-', '', $format->slug );
}