function zzppm_custom_excerpt_length( $length ) {
return 60; // liczba słów
}
add_filter( 'excerpt_length', 'zzppm_custom_excerpt_length', 999 );
function zzppm_custom_excerpt_more( $more ) {
return '...';
}
add_filter( 'excerpt_more', 'zzppm_custom_excerpt_more' );