Wordpress - Theme Structure and Basics
You added this code to
functions.php but it causes a fatal error:
function greet_user() {
echo 'Hello!';
}
add_action('init', greet_user);
What is the cause of the error?