lafif-a
4/25/2014 - 4:15 AM

Limit Character Wordpress Archive

Limit Character Wordpress Archive

<?php
/********************
Limit karakter untuk archive
*********************/

function content($limit, $more='Read More') {
  $content = explode(' ', get_the_content(), $limit);
  if (count($content)>=$limit) {
    array_pop($content);
    $content = implode(" ",$content).' <a href="'.get_permalink().'">'.$more.'</a>';
  } else {
    $content = implode(" ",$content);
  }	
  $content = preg_replace('/\[.+\]/','', $content);
  $content = apply_filters('the_content', $content); 
  $content = str_replace(']]>', ']]&gt;', $content);
  return $content;
}

/********************
Use It
<?php echo content(50, 'Read More'); ?>
*********************/
?>