如何显示部分内容? 时间:2014-04-17 作者:Wordpress User 我想显示20个字符的\\u内容我试过这个,但对我不起作用。<?php $content = \'\'; $content = the_content(); $count_content = strlen($content); if($count_content > 20 ) { $description = substr($content, 0,20,\'UTF-8\'); echo $description ; } else { echo $content; } ?> 1 个回复 最合适的回答,由SO网友:Stephen S. 整理而成 查看Wordpress Codex参考页the_excerpt() 因为这是一种内在的方式来完成您想要完成的任务:http://codex.wordpress.org/Function_Reference/the_excerpt编辑:它还有一个将摘录缩短到默认长度以外的示例。 结束 文章导航