this is my section-archive.php file. when I click on button, it doesn’t show anything.
<?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;?>
I want the rest of the article to be shown on a new page by clicking on the continue reading button.
ehsan ghorbani is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
1
get_permalink, needs an id as a parameter, get_the_permalink uses the current post id.
https://developer.wordpress.org/reference/functions/get_the_permalink/
Eloi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.