如何在wordpress中的特定页面的特殊模板中打印来自db的文本

时间:2017-01-12 15:34:33

标签: wordpress

我有五页,我为最后两页创建了一个不同的布局,布局有一个带有类infoDiv的div,而div有一个我只是手动放入源代码的文本,所以我不能通过wordpress改变它。如何在仪表板中显示它,以便客户端无需更改代码?

            <?php

        /*
        Template Name: Special Layout    
         */

        get_header();

        if (have_posts()) {

            while (have_posts()) {
                the_post();
                ?>

                <article class="borderClass">
                    <h2> <?php the_title(); ?> </h2>

                    <div class="infoDiv">
                        <h4>This is info div</h4>
                        <p>this is the text I want to edit or add 
                          using dashboard.</p>

                    </div>


                   <?php the_content(); ?>
                </article>

                <?php
            }
        } else {
            echo "<p>No content found</p>";
        }

        get_footer();

1 个答案:

答案 0 :(得分:0)

只需移动<?php the_content(); ?>,如下所示

<article class="borderClass">

  <?php the_title( '<h2>', '</h2>' ); ?>

  <div class="infoDiv">

    <?php the_content(); ?> <!-- Entered content -->

  </div>

</article>