wordpress 文章详情内容调不出

2023-04-20T14:45:00

调取代码一

<?php if(have_posts()) : ?>
<?php while(have_posts()) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile; ?>
<?php endif; ?>

调取代码二

如果 <?php the_content(); ?> 调不出,换成 <?php echo $post->post_content; ?> 试试看

<?php if(have_posts()) : ?>
<?php while(have_posts()) : the_post(); ?>
<?php echo $post->post_content; ?>
<?php endwhile; ?>
<?php endif; ?>
当前页面是本站的「Baidu MIP」版。发表评论请点击:完整版 »