Wordpress - WordPress Hooks System
Find the problem in this code:
add_action('wp_head', 'print_message');
function print_message() {
echo 'Welcome!';
}
remove_action('wp_head', 'print_message');