2016-01-28 100 views
0

所以,我目前正在与主题邻居合作,似乎当我选择在产品展示整个事情下显示说明。减少woocommerce摘录长度?

是否有任何方法来限制这段的摘录长度?我已经尝试了一些不同的代码,我已经把它们放到了funtions.php中,并且试图编辑woocommerce文件夹中的short-description.php来无济于事。

我试过这个代码

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

难道我是缺少在这里我不知道什么东西?

回答

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(); ?> 

到你的循环。

+0

那么这似乎并不工作。完整的描述仍然不幸显示。 当我谷歌搜索似乎大多数人只使用我发布的简单的代码,但对我来说,它不工作... – Peter

+0

我只是尝试这一个它的工作 –

+0

可能是一个主题的问题。 –