Wordpress - Theme Structure and Basics
Given this code in
functions.php:
function add_custom_text() {
echo 'Hello, visitor!';
}
add_action('wp_footer', 'add_custom_text');
What will happen on the website?