W

wordpress 文章详情内容调不出

Fsea 默认分类 2023-04-20

调取代码一

<?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; ?>
PREV
GTM安装Google Ads转化代码+转化链接器
NEXT
SIteMap 插件访问报错

评论(0)

发布评论