如何将内容长度缩短到500字?

时间:2019-09-09 作者:Oluwatemitope Adeala

您好,我想在我的单页帖子中将我的帖子内容截断为500字,请问我如何使用PHP做到这一点?

1 个回复
SO网友:Hammad Mashkoor

您可以使用WordPress过滤器回调函数。在主题的目录中,创建一个名为functions的文件。php并在中添加以下内容:

<?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, 500);
  }
?>
每次您通过内容()请求帖子/页面的内容时,都会调用plugin\\u myContentFilter()函数-它将内容提供给您作为输入,并将从函数返回的任何内容用于后续输出或其他过滤函数。

您还可以对\\u exercpt()-add\\u filter()和用作回调的函数执行相同的操作。

有关更多详细信息,请参阅WordPress筛选器参考文档http://codex.wordpress.org/Plugin_API/Filter_Reference

相关推荐