只需创建一个新函数来处理get_the_content()的值,只获得最大数量的单词并添加一个"阅读更多"链接在最后:
function custom_single_product_summary(){
$maxWords = 50; // Change this to your preferences
$description = strip_tags(get_the_content()); // Remove HTML to get the plain text
$words = explode(' ', $description);
$trimmedWords = array_slice($words, 0, $maxWords);
$trimmedText = join(' ', $trimmedWords);
if(strlen($trimmedText) < strlen($description)){
$trimmedText .= ' — <a href="' . get_permalink() . '">Read More</a>';
}
echo $trimmedText;
}
似乎不起作用 有人可以帮助我,谢谢
答案 0 :(得分:0)
请检查一下,
<?php the_content( $more_link_text , $strip_teaser ); ?>
找到了这个
希望这会对你有所帮助。