使用摘要[wp_trim_words()]时保留格式

我正在使用< ?php echo wp_trim_words(get_the_content(), 100); 我的模板文件中的?> 可以控制要在页面上显示的单词数量, 并且该模板下面还有一个链接, 用于将用户带到下一页以读取整个内容, 但是此功能删除了预览页面上所有内容的格式。
我不能在这里使用wordpress默认摘录功能, 因为它正在其他地方使用, 我需要的长度与此不同。使用此方法时是否有保留格式的方法?
谢谢
我找到了解决方案, 也许它也可以帮助其他人。
函数content_excerpt($ excerpt_length = 5, $ id = false, $ echo = true){$ text =” ; if($ id){$ the_post =&get_post($ my_id = $ id); $ text =($ the_post-> post_excerpt)? $ the_post-> post_excerpt:$ the_post-> post_content; } else {global $ post; $ text =($ post-> post_excerpt)? $ post-> post_excerpt:get_the_content(” ); } $ text = strip_shortcodes($ text); $ text = apply_filters(‘ the_content’ , $ text); $ text = str_replace(‘ ]]> ’ , ‘ ]]> ’ , $ text); $ words = preg_split(” / [\ n \ r \ t] + /” , $ text, $ excerpt_length + 1, PREG_SPLIT_NO_EMPTY); if(count($ words)> $ excerpt_length){array_pop($ words); $ text = implode(” , $ words); $ text = $ text。 $ excerpt_more; } else {$ text = implode(” , $ words); } if($ echo)echo apply_filters(‘ the_content’ , $ text); 否则返回$ text; }
函数get_content_excerpt($ excerpt_length = 5, $ id = false, $ echo = false){返回content_excerpt($ excerpt_length, $ id, $ echo); }
//通过以下方式在模板文件中调用函数
< ?php content_excerpt(50); // 50个字等于多少?>
#1尝试:
回声apply_filters(‘ the_content’ , wp_trim_words(get_the_content(), 100));
#2【使用摘要[wp_trim_words()]时保留格式】对于其他面临类似问题的人, 我直接从内核中获取了默认的wp_trim_words()函数, 并将其更改为不剥离标签:

function wp_trim_words_retain_formatting( $text, $num_words = 55, $more = null ) { if ( null === $more ) $more = __( '& hellip; ' ); $original_text = $text; /* translators: If your word count is based on single characters (East Asian characters), enter 'characters'. Otherwise, enter 'words'. Do not translate into your own language. */ if ( 'characters' == _x( 'words', 'word count: words or characters?' ) & & preg_match( '/^utf\-?8$/i', get_option( 'blog_charset' ) ) ) { $text = trim( preg_replace( "/[\n\r\t ]+/", ' ', $text ), ' ' ); preg_match_all( '/./u', $text, $words_array ); $words_array = array_slice( $words_array[0], 0, $num_words + 1 ); $sep = ''; } else { $words_array = preg_split( "/[\n\r\t ]+/", $text, $num_words + 1, PREG_SPLIT_NO_EMPTY ); $sep = ' '; } if ( count( $words_array ) > $num_words ) { array_pop( $words_array ); $text = implode( $sep, $words_array ); $text = $text . $more; } else { $text = implode( $sep, $words_array ); } /** * Filter the text content after words have been trimmed. * * @since 3.3.0 * * @param string $textThe trimmed text. * @param int$num_wordsThe number of words to trim the text to. Default 5. * @param string $moreAn optional string to append to the end of the trimmed text, e.g. & hellip; . * @param string $original_text The text before it was trimmed. */ return apply_filters( 'wp_trim_words', $text, $num_words, $more, $original_text ); }

    推荐阅读