这是我的section-archive.php 文件。当我点击按钮时,它不显示任何内容。
<?php if(have_posts()):while(have_posts()): the_post(); ?>
<div id="archive-section" class="card mb-3">
<div class="card-dody">
<h3><?php the_title() ?></h3>
<?php the_excerpt(); ?>
<a class="btn btn-success" href="<?php the_permalink(); ?>">ادامه مطلب</a>
</div>
</div>
<?php endwhile; endif;?>
我希望通过单击“继续阅读”按钮将文章的其余部分显示在新页面上。
get_permalink,需要一个id作为参数,get_the_permalink使用当前的帖子id。 https://developer.wordpress.org/reference/functions/get_permalink/ https://developer.wordpress.org/reference/functions/get_the_permalink/