附加栏中的Wordpress Post Text摘录?

时间:2011-09-05 23:54:08

标签: wordpress-theming wordpress

我很好奇是否有办法将post txt的摘录输出到侧边栏中,但只有该帖子的侧边栏。

我尝试过将single.php中的get_content循环用于我在另一个DIV中创建的自定义sibar,但是它会在侧边栏中显示post txt,Comments和images。

 <div id="Sidebar">
   <?php the_content(); ?>
 </div>

问题:无论如何都要在侧边栏中显示帖子文字?

1 个答案:

答案 0 :(得分:0)

你可以这样做:

<div id="sidebar">
    <?php 
       the_content();

       //display only on post page 
       if(is_single()){
          the_excerpt();           
       }
</div>

希望有效!