wordpress文章摘要除去代码标签
我们在wordpress网站中常常需要在文章列表里面调用摘要。
默认调用标签:<?php the_excerpt(“Read More…”); ?>
用这个调用代码,生成的摘要会有一个<p>标签,在一些特定的样式里面,就显示不好看了。
所以我们需要把摘要里面的代码<p>删除
使用如下代码:
<?php echo mb_strimwidth(strip_tags(apply_filters('the_content', $post->post_content)), 0, 150,"..."); ?>
可以删除代码,而且可以自定义设置字符。
不足之处是,自动从文章里面获取,无法自定义编辑。
于是把这段调用代码稍微改了一下:
<?php echo mb_strimwidth(strip_tags(apply_filters('the_excerpt', $post->post_excerpt)), 0, 100,"..."); ?>
就可以调用自定义编辑的摘要了。
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END