Wordpress - Plugins and Extensibility
Given this plugin code snippet, what will be the output on the site if the plugin is active?
add_filter('the_title', function($title) { return 'Hello ' . $title; });