Чтобы в поиске, при фильтрации по тегу или по рубрике был полный текст статьи, в файле /wp-content/themes/тема/loop.php (может быть другой файл, зависит от темы) заменить
Код: Выделить всё
<?php if ( is_archive() || is_search() ) : // Only display excerpts for archives and search. ?> <div class="entry-summary"> <?php the_excerpt(); ?> </div><!-- .entry-summary -->
Код: Выделить всё
<?php if ( is_archive() || is_search() ) : // Only display excerpts for archives and search. ?> <div class="entry-summary"> <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyten' ) ); ?> </div><!-- .entry-summary -->