crftwrk / bootscore-4

Bootstrap 4 WordPress Starter Theme
https://v4.bootscore.me
GNU General Public License v2.0
16 stars 5 forks source link

Blog posts view - missing linebreak (html tags) in excerpt. #2

Closed r3fl3x closed 4 years ago

r3fl3x commented 4 years ago

I solve it by adding an extra function in my child theme functions file.

crftwrk commented 4 years ago

Hi,

do you mean the "Read more" link in the excerpt displayed inline? Its a function in function.php in line 370 which removes the paragraph tag around it. I will make this function pluggable in next update.

Best regards

Basti

crftwrk commented 4 years ago

This function is now pluggable in version 3.3.0. Please update the theme.

You can add this into the child theme functions.php:

function bs_read_more( $more ) { 
}
add_filter('the_excerpt', 'wpautop');