Page.php没有显示wordpress的变化

时间:2014-07-28 20:45:52

标签: php html css wordpress templates

所以,我正在使用Html5blank在wordpress中重新创建一个html模板。我的页眉和页脚没有问题,它们都很完美。我遇到的问题是让我的page.php显示我对它所做的更改,它奇怪似乎也不符合我的CSS样式。任何帮助都将非常感激。谢谢!

ETA:我研究了这个网站很长一段时间,虽然有几个问题有些相似,但我没有找到任何我确切的问题。我不确定为什么我会被投票,但我想我应该提到我确实在寻找这个答案。似乎没有人有这个确切的问题,如果他们有类似的问题,他们的解决方案根本无法帮助我。

以下是我的page.php的代码

<?php get_header(); ?>
  <!-- MAIN CONTENT -->
    <div id="outermain">
        <div class="container">
            <div class="row">

                <section id="maincontent" class="twelve columns">
                    <div class="main">

                        <section class="content">

                            <article class="post">
                                <div class="postimg">
                                    <div align="center">
                                    </div>
                                </div>

                                <div class="entry-date">
                                    <div class="postdate">02</div>
                                    <div class="posttime">September</div>
                                </div>

                                <div class="entry-text">
                                   <h2 class="posttitle">
<a href="single.html">Phasellus tempus mauris quis dui lobortis.</a></h2>

<?php if (have_posts()): while (have_posts()) : the_post(); ?>
                                    <div class="entry-content">
                                    <?php article id="post-<?php the_ID(); ?>" 
<?php post_class(); ?>>

            <?php the_content(); ?>

                                    </div>
                                </div>
                                <div class="clear"></div>
                                <?php edit_post_link(); ?>
                            </article>

    <?php endif; ?>


                        </section>

                    </div>
                </section>


            </div>
        </div>
    </div>
    <!-- END MAIN CONTENT -->
    <div id="shadowbottom"></div>


<?php get_footer(); ?>

1 个答案:

答案 0 :(得分:1)

我认为您需要使用以下命令关闭WP循环:

<?php endwhile; else: ?>
<p>Roops, no content here.</p>
<?php endif; ?>

参考:http://codex.wordpress.org/The_Loop