Wordpress - WordPress Hooks System
What will be the output of this code?
function say_hello() {
echo 'Hello ';
}
add_action('wp_footer', 'say_hello');
do_action('wp_footer');