我正在使用此函数将摘录限制在第一句。。。
function hello_first_sentence( $string ) {
$sentence = preg_split( \'/(\\.|!|\\?)\\s/\', $string, 2, PREG_SPLIT_DELIM_CAPTURE );
return $sentence[\'0\'] . $sentence[\'1\'];
} add_filter( \'get_the_excerpt\', \'hello_first_sentence\', 10, 1 );
然而,由于某种原因,我无法添加;阅读更多“;摘录后。。。有什么帮助吗?