관리-도구
편집 파일: helpers.php
<?php if (! function_exists('str_limit_words')) { /** * Limit the number of words in a string. * * @param string $string * @param int $limit * @return string */ function str_limit_words($string, $limit = 100) { $words = explode(' ', $string); if (count($words) <= $limit) { return $string; } return implode(' ', array_slice($words, 0, $limit)) . '...'; } }