Hello all ,
i got problem with Excerpt since i can t have any paragraph formatting, so my except look like one long paragraph without any line breaks.I searched the web , try some settings like add “
” in strip retags but no go and i copy the code here: maybe i shoudl change the last line but really dunno.
`add_filter(‘the_excerpt’, ‘home_excerpts’);
function home_excerpts($content = false) {
global $post;
$mycontent = $post->post_excerpt;
$mycontent = $post->post_content;
$mycontent = strip_shortcodes($mycontent);
$mycontent = str_replace(']]>', ']]>', $mycontent);
$mycontent = strip_tags($mycontent, '<p>' );
$excerpt_length = 10;
$words = explode(' ', $mycontent, $excerpt_length + 1);
if(count($words) > $excerpt_length) :
array_pop($words);
array_push($words, '...');
$mycontent = implode(' ', $words);
endif;
$mycontent = '<p>' . $mycontent . '</p>';
`thx for any help , i am lost