Wordpress - Plugins and Extensibility
Identify the error in this plugin code that tries to add a footer message:
function add_footer_message() {
echo 'Thank you for visiting!';
}
add_filter('wp_footer', 'add_footer_message');