1

我有以下一段代码,它输出了一篇长文章:

<?php the_content(); ?>

我试图只显示文章的摘录(前 29 个单词),去掉 HTML 并在末尾添加“...更多”。

<?php substr(the_content, 29) ?>

我试过这个,但它对长度没有影响。

有什么帮助吗?谢谢

4

2 回答 2

2

你需要的是the_excerpt

<?php the_excerpt(); ?> //and you could check the doc how to set the length.
于 2012-06-08T08:27:14.433 回答
0
<?php echo substr(get_the_content(), 0, 29); ?>

the_content打印内容,get_the_content会得到它。

于 2012-06-08T08:26:46.740 回答