wordpress单帖内容未显示

时间:2016-03-08 11:12:41

标签: php wordpress

Wordpress单博客帖子的内容未显示。我尝试了thisthis,但我不明白为什么它不起作用。它对我来说很好,有没有其他文件可以检查这个问题?

这是我的 single.php

get_header(); ?>

<div id="primary" class="content-area">
    <main id="main" class="site-main" role="main">

    <?php
    while ( have_posts() ) : the_post();

        get_template_part( 'template-parts/content', get_post_format() );

        the_post_navigation();

        // If comments are open or we have at least one comment, load up the comment template.
        if ( comments_open() || get_comments_number() ) :
            comments_template();
        endif;

    endwhile; // End of the loop.
    ?>

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

<?php
get_sidebar();
get_footer();

3 个答案:

答案 0 :(得分:2)

如果您想要显示帖子内容,则需要使用<?php the_content(); ?>或类似内容。

答案 1 :(得分:0)

使用此代码

get_header(); ?>

    <div id="primary" class="content-area">
        <div id="content" class="site-content" role="main">

            <?php /* The loop */ ?>
            <?php while ( have_posts() ) : the_post(); ?>

                <?php get_template_part( 'content', get_post_format() ); ?>
                <?php twentythirteen_post_nav(); ?>
                <?php comments_template(); ?>

            <?php endwhile; ?>

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

<?php get_sidebar(); ?>
<?php get_footer(); ?>

答案 2 :(得分:0)

在单个帖子上,你已经在帖子上了。你不需要这个循环。您可以访问帖子的数据,例如:

<?php get_header() ?>

<div id="post-<?php the_ID(); ?>">
        <h1 class="entry-title"><?php the_title(); ?></h1>
        <?php the_content(); ?></div>
</div>

<?php get_footer() ?>

顺便说一下。你也错过了#34; <?php&#34;在第一行的开头。