我们知道wordpress调用摘要内容用<?php the_excerpt(); ?>就可以,但是它会自动添加一个p标签,如果我们不想要这个p怎么处理呢?其实很简单,用下面的代码就能实现。
<?php echo get_the_excerpt(); ?>
同样的道理,如果想调用内容不带p标签,可以用
<?php echo get_the_content(); ?>
另外一种方法去掉p标签是在你的主题function.php中定义
remove_filter ("the_excerpt" , "wpautop"); remove_filter ("the_content" , "wpautop");
wordpress去掉摘要p标签的完美解决方案
截取文章多个词
方法一:
<?php $excerpt = wp_trim_words(get_post_field("post_content", $post_id), 16); echo $excerpt; ?>
方法二:
<?php $trimexcerpt = get_the_content(); $shortexcerpt = wp_trim_words( $trimexcerpt, $num_words = 18, $more = "… "); echo $shortexcerpt; ?>
方法三:
<?php echo mb_strimwidth(strip_tags(apply_filters('the_content', $post->post_content)), 0, 170,"……"); ?>
还没有评论,来说两句吧...