Wordpress - Plugins and Extensibility
Given this plugin code snippet, what will be the output on the site title?
function change_title($title) {
return 'Welcome - ' . $title;
}
add_filter('wp_title', 'change_title');