My intent is to call a new header with certain pages.
I created a new page template called page-2.php and used it to create a few pages. This page template calls the sub-template header-2.php as in this line, according to instructions listed in many places.
<?php get_header('2'); ?>
It doesn't work. Instead it calls the default template. The header-2 template is so far (for testing purposes) a clone of the default header with only a same sized image changed.
I've tried tampering with the above line, and turning it into an include type command, but it only then returns me no header on my test pages. So at least I know the page-2.php works in calling the sub-template. But that's it.
Does montezuma support alternate headers?