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(']]>', ']]>', $content);
return $content;
}
/********************
Use It
<?php echo content(50, 'Read More'); ?>
*********************/
?>