我想更改主题中变量的值。我不想在此文件中编辑,因为更新主题后,它将丢失。
所以,我想在函数中更新这个变量的值。php。
在里面post-simple.php
文件:
<p class="from_the_blog_excerpt small-font show-next">
<?php
$excerpt = get_the_excerpt();
echo flatsome_string_limit_words( $excerpt, 15 );
?>
</p>
我想更改值15(the length of string)
函数中的另一个值flatsome_string_limit_words($excerpt, $length)
.在里面functions.php
对于子主题,我编写的代码如下所示:
function custom_excerpt_length( $excerpt, $length ) {
$length = 30;
return $length;
}
add_filter( \'flatsome_string_limit_words\', \'custom_excerpt_length\', 999 );
我试图改变$length
到值30
而不是15
像默认设置为onpost-simple.php
文件但这并不成功。它还会回来$length = 15
.