php - wordpress permalink getting the previous clicked link -
php - wordpress permalink getting the previous clicked link -
i have displayed title selected category. , it's anchor tag, permalink not working. problem here? it's old link might somewhere clicked . not working exact category.
<a class="heading-link" href="<?php the_permalink(); ?>"> <?php query_posts('cat=4&showposts=1'); if (have_posts()) : while (have_posts()) : the_post(); the_title(); endwhile; endif; wp_reset_query(); ?> </a>
place <a>
tag within loop
<?php query_posts('cat=4&showposts=1'); if (have_posts()) : while (have_posts()) : the_post(); ?> <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> <?php endwhile; endif; wp_reset_query(); ?>
php wordpress
Comments
Post a Comment