roxcoder

Title limit from latest post addon

Dec 9th, 2015
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.33 KB | None | 0 0
  1. $output .= '<'. $heading_selector .' class="entry-title"><a href="' . $item->link . '">' . $item->title . '</a></'. $heading_selector .'>';
  2.  
  3. to
  4.  
  5. $output .= '<'. $heading_selector .' class="entry-title"><a href="' . $item->link . '">' . JHtml::_('string.truncate', strip_tags($item->title), 50) . '</a></'. $heading_selector .'>';
Advertisement
Add Comment
Please, Sign In to add comment