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



get_page_template_slug › WordPress Function

Da3.4.0
Deprecaton/a
get_page_template_slug ( $post = null )
Parametri:
  • (int|WP_Post) $post Optional. Post ID or WP_Post object. Default is global $post.
    Richiesto: No
    Default: null
Ritorna:
  • (string|false) Page template filename. Returns an empty string when the default page template is in use. Returns false if the post does not exist.
Definito a:
Codex:
ChangeLog:
  • 4.7.0

Gets the specific template filename for a given post.



Sorgenti

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

	if ( ! $post ) {
		return false;
	}

	$template = get_post_meta( $post->ID, '_wp_page_template', true );

	if ( ! $template || 'default' === $template ) {
		return '';
	}

	return $template;
}