WordPress主题开发:截取标题或内容
截取可以用wp_trim_words()
用法:
<?php $trimmed = wp_trim_words( $text, $num_words = 55, $more = null ); ?>
参数说明:$text---截取内容,$num_words ---限定字数,$more ---截取后加在尾部的字符
截取文章内容:
<?php $content = get_the_content(); $trimmed_content = wp_trim_words( $content, 40, '<a href="'. get_permalink() .'"> ...Read More</a>' ); echo $trimmed_content; ?>
截取文章标题:
<?php $title = get_the_title(); $trimmed_title = wp_trim_words( $title, 20, '...' ); echo $trimmed_title; ?>
2024还活着,挺好的,向着星辰与深渊,加油,博客园不要倒下啊!