不幸的是,这是一个相当草率的插件。但是,要回答您的问题:
更换该功能gopiplus_clean
用这个
function gopiplus_clean( $excerpt, $length = 0 ) {
$string = strip_tags( str_replace( \'[...]\', \'...\', $excerpt ) );
if ( $length > 0 ) {
$words_array = preg_split( "/[\\n\\r\\t ]+/", $excerpt, $length + 1, PREG_SPLIT_NO_EMPTY );
$words = count( $words_array );
if ( $words <= $length ) {
return $excerpt;
}
$array = array_slice( $words_array, 0, $length );
$string = implode( \' \', $array );
}
return $string;
}
更换
if ($displayreadmore == "YES")
(2处)带
if ($displayreadmore == "YES" && (str_word_count($post_content) > $displaydesc))
只需在设置中输入“淡入”,而不是幻灯片版本。它会起作用的。