如何为产品说明添加阅读按钮?

时间:2018-05-27 15:53:07

标签: wordpress function woocommerce hook-woocommerce

只需创建一个新函数来处理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 .= ' &mdash; <a href="' . get_permalink() . '">Read More</a>';
  }

  echo $trimmedText;
}

似乎不起作用 有人可以帮助我,谢谢

1 个答案:

答案 0 :(得分:0)

请检查一下,

<?php the_content( $more_link_text , $strip_teaser ); ?> 

我从这里Customizing the Read More

找到了这个

希望这会对你有所帮助。