在WP主页上显示缩短的帖子摘要

时间:2013-08-27 09:47:38

标签: php wordpress wordpress-plugin

在我的WordPress安装中,我正在尝试在主页上显示一篇简短的帖子文字摘要(参见附件图片和以红色突出显示的文字)

主页包含我最近发布的帖子的堆叠列表(默认帖子)。

我已经知道的两个常见解决方案:

解决方案#1 - “插入更多”标签: - 我不想拥有“更多”按钮。我只需要有特色图片,作者,类别,然后是缩短的帖子摘要。

解决方案#2 - 将“the_content”替换为“the_excerpt” - 我在index.php和archive.php中查找了“the_content”,并且它们似乎不存在于这些文件中。它存在于blog.php中,但将其更改为“the_excerpt”则不执行任何操作,并且在创建帖子时没有选项可供选择。

我的WP主题是Qreator responsive WP

提前感谢您的帮助!

1 个答案:

答案 0 :(得分:1)

<?php   
  add_filter("the_content", "plugin_myContentFilter");

  function plugin_myContentFilter($content)
  {
    // Take the existing content and return a subset of it
    return substr($content, 0, 300);
  }
?>

look here