0

我现在为此苦苦挣扎了半天,但似乎无法正确解决。我的 wordpress 网站中有一个自定义函数,它会自动创建一个摘录。这一切都很顺利,但由于某些(我猜是合乎逻辑的)原因,它也切断了<br />标签,因为它有一个空格。

如何解决这个问题?这与 preg_split 函数有关吗?

下面是我的代码:

function custom_wp_trim_excerpt($text) {
$raw_excerpt = $text;
if ( '' == $text ) {
    //Retrieve the post content. 
    $text = get_the_content('');

    //Delete all shortcode tags from the content. 
    $text = strip_shortcodes( $text );

    $text = apply_filters('the_content', $text);
    $text = str_replace(']]>', ']]&gt;', $text);

    $allowed_tags = '<p>,<br>,<br/>,<br />,<a>,<em>,<strong>,<img>'; /*** MODIFY THIS. Add the allowed HTML tags separated by a comma.***/
    $text = strip_tags($text, $allowed_tags);

    $excerpt_word_count = 40; /*** MODIFY THIS. change the excerpt word count to any integer you like.***/
    $excerpt_length = apply_filters('excerpt_length', $excerpt_word_count); 

    $excerpt_end = ' <a href="'. get_permalink($post->ID) . '">' . '...' . '</a>'; 
    $excerpt_more = apply_filters('excerpt_more', ' ' . $excerpt_end);

    $words = preg_split("/[\n\r\t ]+/", $text, $excerpt_length + 1, PREG_SPLIT_NO_EMPTY);
    if ( count($words) > $excerpt_length && $words ) {
        array_pop($words);
        $text = implode(' ', $words);
        $text = $text . $excerpt_more;
    } else {
        $text = implode(' ', $words);
    }
}
return apply_filters('wp_trim_excerpt', $text, $raw_excerpt);
}
remove_filter('get_the_excerpt', 'wp_trim_excerpt');
add_filter('get_the_excerpt', 'custom_wp_trim_excerpt');

谢谢!

4

1 回答 1

0

您可以添加它以使所有 HTML 中断字符相同:

$text = preg_replace('!<br ?/>!i','<br>',$text);

在这些行之前:

$allowed_tags = '<p>,<br>,<a>,<em>,<strong>,<img>'; /*** MODIFY THIS. Add the allowed HTML tags separated by a comma.***/
$text = strip_tags($text, $allowed_tags);

当你这样做时,preg_split("/[\n\r\t ]+/",$text)你正在分割中断<br />字符中的空间。

您还可以简化语句中的正则表达式preg_split()

$words = preg_split("!\s+!", $text, $excerpt_length + 1, PREG_SPLIT_NO_EMPTY);

由于您允许其他标签,它们可能也包含空格。

于 2013-04-26T09:09:29.743 回答