Просмотр 1 ответа (всего 1)
  • Модератор Sergey Biryukov

    (@sergeybiryukov)

    Live and Learn

    Можно сократить до 20 слов, если вместо <?php the_excerpt(); ?> написать в search.php:

    <?php
    $excerpt_length = 20;
    $excerpt = get_the_excerpt();
    $words = explode(' ', $excerpt, $excerpt_length + 1);
    if (count($words) > $excerpt_length) {
    	array_pop($words);
    	$text = implode(' ', $words) . ' [...]';
    }
    echo $text;
    ?>

Просмотр 1 ответа (всего 1)

Тема «Поиск» закрыта для новых ответов.