如何在WordPress

时间:2017-11-07 10:49:07

标签: wordpress

默认情况下,WordPress摘录设置为55个单词。我想获得多个摘录,每个摘录返回不同的数值,这样我就可以获得博客模板的简短摘录,其他帖子类型循环的自定义单词摘录。如何在wordpress中做到这一点??

1 个答案:

答案 0 :(得分:2)

您可以使用以下功能

更改内容长度
// for get_the_excerpt()
echo wp_trim_words( get_the_excerpt(), 40, '...' );

// for get_the_content()
echo wp_trim_words( get_the_content(), 40, '...' );

此处有更多信息https://developer.wordpress.org/reference/functions/wp_trim_words/