0

我制作了我的第一个主题,它非常适合编辑更新页面等,但不会显示任何帖子。

我已将“循环”放入模板页面(从二十二个主题复制),因为我只希望帖子出现在该页面上。我已将博客文章设置为显示在此页面上(来自设置页面),但仍然不会显示任何内容。

这是我用于显示博客文章的模板页面的代码。

知道有什么问题吗?

<?php
/**
*  Template Name: blog
*
* Full width page template with no sidebar.
*
* @package Myfirsttheme
* @subpackage Template
*/

get_header(); ?>

    <?php if ( have_posts() ) : ?>

        <?php /* Start the Loop */ ?>
        <?php while ( have_posts() ) : the_post(); ?>
            <?php get_template_part( 'content', get_post_format() ); ?>
        <?php endwhile; ?>

    <?php else : ?>

        <article id="post-0" class="post no-results not-found">
            <div class="entry-content">
                <p><?php _e( 'Apologies, but no results were found. Perhaps searching will help find a related post.', 'twentytwelve' ); ?></p>
                <?php get_search_form(); ?>
            </div><!-- .entry-content -->
        <?php endif; // end current_user_can() check ?>

        </article><!-- #post-0 -->

    <?php endif; // end have_posts() check ?>

    </div><!-- #content -->
</div><!-- #primary -->

<?php get_footer(); ?>
4

1 回答 1

1

帖子将始终出现在 index.php 模板中,除非您更改 中的“首页显示”选项Settings=>Reading,例如,请参见此处:http: //imgur.com/izwa5yw如果您有此设置以在页面上显示博客帖子(在图像中),然后任何页面(博客)都必须将默认模板(在页面编辑屏幕中)设置为您在文件的模板名称:部分(在您的情况下为博客)中写入的值,正如泰米尔语所说。

更新:你必须回get_template_part()显,否则它不会出现。您可以改用the_content() 首选。任何以 the_ 开头的变量都会自行输出。get_ 变量不会自己输出。

<?php echo get_template_part(); ?>

<?php the_content() ?>
于 2013-04-28T03:31:07.153 回答