如何在主页上获得某些文章的完整帖子内容.& lt; ?php the_excerpt ();比;vs & lt; ?ph


How to get the full post content for certain articles only in the home page. <?php the_excerpt(); ?> vs <?php the_content(); ?>

我想知道是否有一种方法可以选择某个帖子是否可以在wordpress的主页上显示完整内容或仅显示摘录。在content。php中,我修改了php the_摘录();到PHP the_content();但是这显示了我所有的特色图片和画廊的第一张图片,这不是我想要的,所以我不得不把它改回来。我做一个链接转储,但希望在主页上的外部链接更容易访问。我已经附上了一个链接,以显示我想在主页上显示的帖子和其他人喜欢它。我把所有的链接转储放在一个类别中,如果有帮助的话。

http://badsentinel.com/2014/07/30/hot-links-around-the-net-124/

提前感谢您的帮助。

我能自己弄清楚。我最后使用了一个if语句。

if (in_category('Links')) {
    the_excerpt();
  } else {
    the_content();
 }