wordpress---page页面数据调用

在wordpress的开发中,会使用wordpress的的页面,那么页面数据该怎么调用呢?

拿到页面的 content:

<?php if(have_posts()) : ?>
<?php while(have_posts()) : the_post(); ?>
<?php the_content(); ?> 
<?php endwhile; ?> 
<?php endif; ?>
原文地址:https://www.cnblogs.com/e0yu/p/10161112.html