摘录-第一句话&阅读更多内容

时间:2020-07-25 作者:PauloP

我正在使用此函数将摘录限制在第一句。。。

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 ); 
然而,由于某种原因,我无法添加;阅读更多“;摘录后。。。有什么帮助吗?

1 个回复
最合适的回答,由SO网友:mozboz 整理而成

要在PHP中附加字符串,请使用., 例如:

return $sentence[\'0\'] . $sentence[\'1\'] . "... Read More";

相关推荐

如何在Functions.php中链接style.css

我是WordPress的新手;我刚开始学习WordPress。我想把风格联系起来。函数中的css。php,但我无法解决这里可能存在的问题。谁能给我指出正确的方向吗?指数php<?php get_header(); ?> <?php if ( have_posts() ) { while ( have_posts() ) { the_post();