Like that it would work. But now i have to tell wp to give me back my h3 tags for excerpt. thats how i found this:
HTML Code:
remove_filter('get_the_excerpt', 'wp_trim_excerpt');
add_filter('get_the_excerpt', 'replacement_custom_trim_excerpt');
function replacement_custom_trim_excerpt($text) {
$raw_excerpt = $text;
if ( '' == $text ) {
$text = get_the_content('');
$text = strip_shortcodes( $text );
$text = apply_filters('the_content', $text);
$text = str_replace(']]>', ']]>', $text);
$text = strip_tags($text, '<h3>');
$excerpt_length = apply_filters('excerpt_length', 100);
$excerpt_more = apply_filters('excerpt_more', ' ' . '[...]');
$words = preg_split("/[\n\r\t ]+/", $text, $excerpt_length + 1, PREG_SPLIT_NO_EMPTY);
if ( count($words) > $excerpt_length ) {
array_pop($words);
$text = implode(' ', $words);
$text = $text . $excerpt_more;
} else {
$text = implode(' ', $words);
}
}
return apply_filters('replacement_wp_trim_excerpt', $text, $raw_excerpt);
}*
Can i use that in my functions.php instead of what athualpa writes there?
Do i have to name the replacment function like the ata function?
Or will it break atahualpa or do the same error as before?