• Hi there!

    The problem I’m facing is with post’s excerpt. I would like to add line-break at the end of each sentence, to have a nice layout. But If I add any custom html code into excerpt like “<br />” or “” it won’t work.

    The screenshot -> https://snipboard.io/NAFWSy.jpg

    I’ve swtiched theme, and no difference.

    Do you have any suggestions on how to fix this problem?

Viewing 1 replies (of 1 total)
  • Put this in your theme’s function.php

    function excerpt_br_tug87a( $excerpt ) {
    	if ( is_admin() ) {
    		return $excerpt;
    	}
    	$excerpt = str_replace( array('.'), '.<br />', $excerpt );
    	return $excerpt;
    }
    add_filter( 'get_the_excerpt', 'excerpt_br_tug87a', 999 );

    This will simply take you excerpt, and replace every “.” with “.<br />” thus adding a line break after every period.

Viewing 1 replies (of 1 total)
  • The topic ‘How to Add line-break in post’s excerpt’ is closed to new replies.