get_page_template_slug( int|WP_Post $post = null )
Get the specific template name for a given post.
描述
参数
- $post
-
(int|WP_Post)
(Optional)
Post ID or WP_Post object. Default is global $post.Default value: null
返回值
(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.
源代码
File: wp-includes/post-template.php
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;
}
更新日志
Version | 描述 |
---|---|
4.7.0 | Now works with any post type, not just pages. |
3.4.0 | Introduced. |
相关函数
Uses
-
wp-includes/post.php:
get_post_meta() -
wp-includes/post.php:
get_post()
Used By
-
wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:
WP_REST_Posts_Controller::prepare_item_for_response() -
wp-includes/template.php:
get_single_template() -
wp-includes/template.php:
get_page_template() -
wp-includes/post-template.php:
is_page_template() -
wp-includes/post-template.php:
get_body_class() -
wp-includes/class-wp-xmlrpc-server.php:
wp_xmlrpc_server::_prepare_page() -
wp-includes/class-wp-editor.php:
_WP_Editors::editor_settings()
Show 2 more used by
Hide more used by
-
Skip to note content
You must log in to vote on the helpfulness of this noteVote results for this note: 0You must log in to vote on the helpfulness of this note
Contributed by
Codex
Display the page template filename of the current page:
<?php echo esc_html( get_page_template_slug( $post->ID ) ); ?>
你可能对这些文章感兴趣:
- wordpress函数get_the_posts_navigation()用法示例
- wordpress函数get_the_title()用法示例
- wordpress函数get_the_terms()用法示例
- wordpress函数get_the_tags()用法示例
- wordpress函数get_the_taxonomies()用法示例
- wordpress函数get_the_posts_pagination()用法示例
- wordpress函数get_the_permalink()用法示例
- wordpress函数get_the_password_form()用法示例
- wordpress函数get_the_modified_date()用法示例
- wordpress函数get_the_modified_time()用法示例
- wordpress函数get_the_modified_author()用法示例
- wordpress函数get_the_guid()用法示例
- wordpress函数get_the_ID()用法示例
- wordpress函数get_the_excerpt()用法示例
如有疑问,请前往问答中心反馈!
反馈