the excerpt
<?php the_excerpt(); ?> анонс
<?php if ( is_category() || is_archive() ) {
the_excerpt();
} else {
the_content();
} ?>
function custom_excerpt_length( $length ) {
return 20;
}
add_filter( 'excerpt_length', 'custom_excerpt_length', 999 ); -ДЛИННА АНОНСА
function new_excerpt_more( $more ) {
return '[.....]';
}
add_filter('excerpt_more', 'new_excerpt_more'); -ЗАМЕНА КВАДРАТНЫХ СКОБОК