Wordpress - WordPress Hooks System
Why does this code produce an error?
add_filter('the_excerpt', 'modify_excerpt');
function modify_excerpt($excerpt) {
return strtolower($excerpt);
}
echo apply_filters('the_excerpt');