Wordpress - Theme Structure and Basics
If you add this code to
functions.php:
function display_footer_note() {
echo 'Thank you for visiting!';
}
add_action('wp_footer', 'display_footer_note');
Where will the message 'Thank you for visiting!' be displayed on the site?