Wordpress - WordPress Hooks System
What happens if you try to remove an action hook with a different priority than it was added with?
add_action('wp_footer', 'footer_message', 10);
remove_action('wp_footer', 'footer_message', 20);