在wordpress的开发中,会使用wordpress的的页面,那么页面数据该怎么调用呢?
拿到页面的 content:
<?php if(have_posts()) : ?> <?php while(have_posts()) : the_post(); ?> <?php the_content(); ?> <?php endwhile; ?> <?php endif; ?>
在wordpress的开发中,会使用wordpress的的页面,那么页面数据该怎么调用呢?
拿到页面的 content:
<?php if(have_posts()) : ?> <?php while(have_posts()) : the_post(); ?> <?php the_content(); ?> <?php endwhile; ?> <?php endif; ?>