我有以下一段代码,它输出了一篇长文章:
<?php the_content(); ?>
我试图只显示文章的摘录(前 29 个单词),去掉 HTML 并在末尾添加“...更多”。
<?php substr(the_content, 29) ?>
我试过这个,但它对长度没有影响。
有什么帮助吗?谢谢
你需要的是the_excerpt
<?php the_excerpt(); ?> //and you could check the doc how to set the length.
<?php echo substr(get_the_content(), 0, 29); ?>
the_content打印内容,get_the_content会得到它。