Wordpress - Theme Structure and Basics
This code in
functions.php causes a blank page error:
add_action('wp_head', 'print_message');
function print_message() {
echo 'Hi there!';
exit;
}
What is the problem?