請注意,我用這個wordpress。如何修改我的php函數來添加額外的文本?
我添加了這個功能添加到functions.php:
function string_limit_words($string, $word_limit)
{
$words = explode(' ', $string, ($word_limit + 1));
if(count($words) > $word_limit)
array_pop($words);
return implode(' ', $words);
}
我將此添加到我的html:
<?php if ($woo_options['woo_post_content_home'] == "true") the_content(); else $excerpt = get_the_excerpt(); echo string_limit_words($excerpt,38); ?>
這樣做是會縮短文本中指定的單詞數(在此採樣38)。我想要做的是在這38個單詞之後加上。有關我如何做到這一點的任何建議?
問候,
工作正常。謝謝! –