I am using a child theme. In my child theme folder I have the following files:
In my custom page template "page-lp3.php" I'm using get_header('blank') to call a custom header template. But no matter what I do, it reverts to the child-theme's header.php file not header-blank.php as intended.
This is the code in "page-lp3.php":
<?php
/*
Template Name: LP3
*/
get_header('blank');
?>
The custom template is activated for that page in WordPress. And the changes I make to the custom template are working as expected. But the custom header is not cooperating. What am I doing wrong?