WORDPRESS - 只有Sticky Posts子弹列表,超链接到相关帖子

时间:2013-11-27 19:03:19

标签: php wordpress list post sticky

我发现了一条帖子,帮助我在我的主页上创建了指定数量的粘贴帖子列表:

 <?php
 query_posts('showposts=4');
 if (have_posts()) {
   while (have_posts()) : the_post();
     if ( is_sticky() ) :
     the_title('<li><a href="">','</a></li>');
     endif;
   endwhile;
 }
 wp_reset_query();
 ?>

然而,我完全被困在如何将此链接到帖子的永久链接。我知道永久链接的代码是the_permalink();但我似乎无法将它们组合在一起所以我的链接在一个href =“”字段中。任何帮助都将非常感激。

由于

1 个答案:

答案 0 :(得分:0)

 <?php
 query_posts('showposts=4');
 if (have_posts()) {
   while (have_posts()) : the_post();
     if ( is_sticky() ) : ?>
     <li><a href="<?php the_permalink();?>"><?php the_title();?></a></li>
     <?php 
     endif;
   endwhile;
 }
 wp_reset_query();
 ?>