WordPress:get_header()在页面模板中不起作用

时间:2015-10-20 18:12:44

标签: php wordpress templates custom-post-type

我正在使用页面模板从自定义帖子类型中获取数据。页面名称为client,页面模板文件夹中的模板名称为client-template.php

这是client-template .

中的代码
<?php
/**
 * Template Name: Client Template
 *
 * @package WordPress
 * @subpackage Twenty_Fourteen
 * @since Twenty Fourteen 1.0
 */
?> 
<?php get_header();?>

<div id="main-content" class="main-content"> 
    <div id="primary" class="content-area">
        <div id="content" class="site-content" role="main">
            <?php
                                $args=array('post_type' => 'clients');
                                $query= new WP_Query($args);                               
                // Start the Loop.
                while ($query-> have_posts() ) : $query->the_post();

                                        echo the_title();
                                        echo the_post_thumbnail();


                endwhile;
            ?>
        </div><!-- #content -->
    </div><!-- #primary -->
</div><!-- #main-content -->

现在,这是获取数据并显示它。但是,标题没有被包含在这里错误,我使用类型插件来创建帖子类型,然后为客户端页面选择上面提到的模板。 请帮帮我。

0 个答案:

没有答案