Advertisement
lorro

WooCommerce - Shorten product titles

Dec 12th, 2016
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.35 KB | None | 0 0
  1. <?php
  2.   // shorten product title
  3.   // code goes in functions.php for your child theme
  4.   add_filter('the_title', 'modify_title', 10);
  5.   function modify_title( $title ) {
  6.     if ( is_woocommerce() || is_product_category() ) {
  7.       if ( strlen( $title ) > 10 ) {      
  8.         $title = substr($title, 0, 10).'...';
  9.       }
  10.     }
  11.     return $title;
  12.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement