PHP 限制WordPress摘录
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 限制WordPress摘录相关的知识,希望对你有一定的参考价值。
remove_filter('get_the_excerpt', 'wp_trim_excerpt');
add_filter('get_the_excerpt', 'custom_trim_excerpt');
function custom_trim_excerpt($text) { // Fakes an excerpt if needed
global $post;
if ( '' == $text ) {
$text = get_the_content('');
$text = apply_filters('the_content', $text);
$text = str_replace(']]>', ']]>', $text);
$text = strip_tags($text);
$excerpt_length = x;
$words = explode(' ', $text, $excerpt_length + 1);
if (count($words) > $excerpt_length) {
array_pop($words);
array_push($words, '...');
$text = implode(' ', $words);
}
}
return $text;
}
以上是关于PHP 限制WordPress摘录的主要内容,如果未能解决你的问题,请参考以下文章
php [摘录限制] Poner un limite al extracto en wordpress #wordpress #php
Wordpress摘录自定义字数限制
限制WordPress摘录
php Wordpress摘录
php 从摘录中删除短代码(WordPress)
php 将类添加到WordPress摘录