Wordpress - WordPress Hooks System
What will be the output of this code snippet?
function greet() {
echo 'Hello!';
}
add_action('wp_footer', 'greet');
Assuming the theme calls do_action('wp_footer'); in the footer.