How do I display a wordpress page content?

前端 未结 7 684
悲&欢浪女
悲&欢浪女 2021-01-31 03:08

I know this is really simple but it just isn\'t coming to me for some reason and google isn\'t helping me today.

I want to output the pages content, how do I do that?

相关标签:
7条回答
  • 2021-01-31 03:54

    Just put this code in your content div

    <?php
    // TO SHOW THE PAGE CONTENTS
        while ( have_posts() ) : the_post(); ?> <!--Because the_content() works only inside a WP Loop -->
            <div class="entry-content-page">
                <?php the_content(); ?> <!-- Page Content -->
            </div><!-- .entry-content-page -->
    
        <?php
    endwhile; //resetting the page loop
    wp_reset_query(); //resetting the page query
    ?>
    
    0 讨论(0)
提交回复
热议问题