Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_filter('woocommerce_short_description','limit_short_descr');
- function limit_short_descr($description){
- return ($description > 140) ? substr($description, 0 , 140) : $description;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement