Get_header raises an 500 internal server error
I am working on custom development in wordpress, my problem is the following every time I create a new template.
Code
/* Template Name: Citas Rolex*/
get_header();
echo "h1loren ipsum/h1";
get_footer();
It gives me the following error in the user view
In browser
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator to inform of the time the error occurred and of anything you might have done that may have caused the error.More information about this error may be available in the server error log.
I miss that when I comment on get_header ()
the view works perfectly for me
/* Template Name: Citas Rolex*/
//get_header();
echo "h1loren ipsum/h1";
get_footer();
?
Topic template-tags errors theme-development Wordpress
Category Web