WordPress函数/模板标签,获取内容的前n个单词 时间:2014-04-16 作者:Jaromír the Greenhorn 好的,这可能是重复的,我只是无法将我的想法放入适当的搜索词中,对此表示抱歉!是否有内置函数或模板标记来获取第一个n 内容的文字?我是说the_content().谢谢 1 个回复 最合适的回答,由SO网友:TheDeadMedic 整理而成 是的,wp_trim_words(): <?php $trimmed = wp_trim_words( $text, $num_words = 55, $more = null ); ?> 或者在您的情况下:<?php echo apply_filters( \'the_content\', wp_trim_words( strip_tags( $post->post_content ), 55 ) ); ?> 结束 文章导航