wordpress永久链接获取之前点击的链接

时间:2014-06-26 11:47:44

标签: php wordpress

我已显示所选类别的标题。它是一个锚标记,但永久链接不起作用。这里有什么问题?它得到了可能只是点击的旧链接。但是没有使用确切的类别。

        <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>

1 个答案:

答案 0 :(得分:0)

在您的循环中放置<a>标记

<?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();

         ?> 
相关问题