仅在wordpress主博客页面上显示标题摘录?

时间:2018-07-13 19:13:08

标签: php html css wordpress

我希望在博客的主页上显示博客文章标题的缩短版本,并提供该文章的缩略图。我已经找到了很多有关如何仅显示文章摘录的信息,但找不到有关如何缩短标题显示的测试时间的任何信息。

任何帮助都将是惊人的!谢谢!

1 个答案:

答案 0 :(得分:0)

Wordpress中没有此类功能。

编辑:看看the_title钩子。

https://codex.wordpress.org/Plugin_API/Filter_Reference/the_title

您可以将钩子与类似的东西结合使用

$out = strlen($in) > 50 ? substr($in,0,50)."..." : $in;

或使用CSS将一个类添加到您的标题中:

.ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

Add ... if string is too long PHP上找到