Wordpress - WordPress Hooks System
What will this code output?
add_filter('the_content', function($content) { return $content . ' - Modified'; });
echo apply_filters('the_content', 'Hello World');