减少woocommerce摘录长度?

时间:2016-01-28 23:12:24

标签: php wordpress woocommerce

所以,我目前正在使用主题邻居,似乎当我选择在产品下显示描述时,它会显示整个事物。

有没有办法限制摘录长度?我已经尝试了一些不同的代码,我已经放入funtions.php,并尝试编辑woocommerce文件夹中的short-description.php无济于事。

我试过这段代码

<?php $excerpt = apply_filters( 'woocommerce_short_description', $post->post_excerpt );
echo substr($length,0, 10);
?>

我想知道这是我想念的吗?

1 个答案:

答案 0 :(得分:0)

看起来你需要一个自定义功能

function get_the_twitter_excerpt(){
$excerpt = get_the_content();
$excerpt = strip_shortcodes($excerpt);
$excerpt = strip_tags($excerpt);
$the_str = substr($excerpt, 0, 20);
return $the_str;
}

你应该能够将上述内容放入你的功能中

<?php echo 'Excerpt: '.get_the_twitter_excerpt(); ?>

进入你的循环。