无法使用特定模板获取wordpress页面列表

时间:2014-04-07 16:40:09

标签: php wordpress templates

我正在尝试使用特定模板创建一个选项框,其中的选项是wordpress上的所有页面。

模板文件名是 property.php ,与/page-templates/property.php

中的主题文件夹相关

我有代码工作,返回所有页面名称,直到我指定模板名称。

我甚至添加了

<?php echo get_page_template(); ?> 

property.php 模板,从wordpress本身获取模板名称。

我已经尝试了 property.php /page-template/property.phppage-template/property.php甚至是根文件夹中的整个文件名(这是get_page_template()返回的内容)但仍然没有。

我只能假设我错过了一些完全明显的东西。

<select id='cottage' name='cottage'>
    <?php
        $args = array('hierarchical' => 0, 'meta_key' => '_wp_page_template', 'meta_value' => 'property.php'); 

        $pages = get_pages($args);

        foreach($pages as $page)
        {
            echo "<option value='" . $page->post_title . "'>" . $page->post_title . "</option>";
        }
    ?>
</select>

1 个答案:

答案 0 :(得分:0)

任何想要了解它的人都是:

page-templates/property.php