我有以下代码输出一篇长篇文章:
<?php the_content(); ?>
我试图仅显示文章的摘录(前29个单词),删除HTML并在结尾添加“... more”。
<?php substr(the_content, 29) ?>
我试过这个,但它对长度没有影响。
有任何帮助吗?感谢
答案 0 :(得分:2)
您需要的是the_excerpt
<?php the_excerpt(); ?> //and you could check the doc how to set the length.
答案 1 :(得分:0)
<?php echo substr(get_the_content(), 0, 29); ?>
the_content打印内容,get_the_content即可获得该内容。