VK
Size: a a a
VK
С
MD
VK
MD
if ( mb_strlen( $content ) < 150 ) {
return $content;
}
С
if ( mb_strlen( $content ) < 150 ) {
return $content;
}
С
<?php- три крапки з'явилися всюди, але довжину символів вимірює коряво( синім виділив все що > 80 символів.
echo wp_trim_words( get_the_content(), 80, '...' );
?>
MD
С
<?php echo wp_trim_words( get_the_content(), 80, '...' );
?>
MD
MD
С
function text_substr( $text, $val ) {
return mb_substr( strip_tags( $text ), 0, $val );
}
function new_more_text( $more_link, $more_link_text ) {
$new = "..."; // вписываем своё
if ( mb_strlen( $content ) < 150 ) {
return $content . '...';
}
return str_replace( $more_link_text, $new, $more_link );
}
add_filter( 'the_content_more_link', 'new_more_text', 10, 2 );
АС
function custom_excerpt_length( $length ) {
return 20;
}
add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );
АС
С