返回介绍

get_page_templates()

发布于 2017-09-10 23:44:17 字数 3319 浏览 1017 评论 0 收藏 0

get_page_templates( WP_Post|null $post = null,  string $post_type = 'page' )

Get the Page Templates available in this theme


description


参数

$post

(WP_Post|null) (Optional) The post being edited, provided for context.

Default value: null

$post_type

(string) (Optional) Post type to get the templates for.

Default value: 'page'


返回值

(array) Key is the template name, value is the filename of the template


源代码

File: wp-admin/includes/theme.php

function get_page_templates( $post = null, $post_type = 'page' ) {
	return array_flip( wp_get_theme()->get_page_templates( $post, $post_type ) );
}

更新日志

Versiondescription
4.7.0Added the $post_type parameter.
1.5.0Introduced.

相关函数

Uses

  • wp-includes/theme.php: wp_get_theme()
  • wp-includes/class-wp-theme.php: WP_Theme::get_page_templates()

Used By

  • wp-admin/includes/template.php: page_template_dropdown()
  • wp-admin/includes/meta-boxes.php: page_attributes_meta_box()
  • wp-admin/includes/class-wp-posts-list-table.php: WP_Posts_List_Table::inline_edit()
  • wp-includes/class-wp-xmlrpc-server.php: wp_xmlrpc_server::wp_getPageTemplates()

User Contributed Notes

  1. 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

    Output a list of available templates

    The following code snippet loops through the available page templates and outputs their template names and the filenames.

    
    <?php 
       $templates = get_page_templates();
       foreach ( $templates as $template_name => $template_filename ) {
           echo "$template_name ($template_filename)<br />";
       }
    ?>
    
    
    <?php print_r(get_page_templates());?>
    Array
    (
        [Sidebar] => sidebar.php
        [Category] => category.php
        [Page] => page.php
        [Home] => home.php
        [Single] => single.php
        [Comments Popup] => comments-popup.php
        [Footer] => footer.php
        [Header] => header.php
        [Index] => index.php
        [Contact] => contact.php
        [Home-Intro] => home-intro.php
        [Sidebar Left] => sidebar-left.php
        [Sidebar Right] => sidebar-right.php
        [TOC Home] => page-client-toc.php
        [Search Form] => searchform.php
        [Main-Navbar] => main-navbar.php
        [Bookmarks] => page-bookmarks.php
    )
    

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文