Sử dụng trong file function.php
/**
* Limit the length of 'the_excerpt' in WordPress
*/
function limit_words($string, $word_limit) {
$words = explode(' ', $string);
return implode(' ', array_slice($words, 0, $word_limit));
}
Tiếp theo chèn code dưới đây vào vị trí bạn muốn hiển thị
<?php echo limit_words(get_the_excerpt(), '30'), ' ...'; ?>
Không có nhận xét nào:
Đăng nhận xét