wordpress文章摘要调用和截取
文章描述:
WordPress文章摘要调用和字符截取,文章摘要是简单明了的描述文章内容,使内容一目了然。
文章摘要调用
<?php get_the_excerpt();?>
文章摘要调用截取字符
<?php wp_trim_words( get_the_excerpt(),40);?>
当没有摘要时,则截取内容
<?php
if (has_excerpt()) {
echo $description = get_the_excerpt(); //文章编辑中的摘要
}else {
echo mb_strimwidth(strip_tags(apply_filters('the_content', $post->post_content)), 0, 200,"……"); //文章编辑中若无摘要,自定截取文章内容字数做为摘要
}
?>
发布时间:2021/06/21
发表评论