php 帖子标题摘录

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 帖子标题摘录相关的知识,希望对你有一定的参考价值。

<?php 
/**
 * Function to display post excerpt/content with limited words on listing page. calling echo apply_filters('the_content', post_excerpt(20));
 * @global type $post
 * @param type $word_count
 * @return type string
 */
function post_excerpt($word_count = 15) {
   return wp_trim_words(get_the_excerpt(), $word_count);
}

// Changing excerpt more
function post_excerpt_more($more) {
    $more = '...';
    return $more;
}

add_filter('excerpt_more', 'post_excerpt_more');

以上是关于php 帖子标题摘录的主要内容,如果未能解决你的问题,请参考以下文章

php 修改帖子摘录的长度

PHP 完整显示最新帖子,摘录后休息

php 将帖子摘录限制为固定数量的单词

php 将帖子摘录截断为固定数量的字符

php 将帖子摘录限制为固定数量的单词

php 将帖子摘录截断为固定数量的字符