Seems not to matter.
Calling <?php get_footer(foot2.php); ?> displayed footer.php.
Here’s my page file:
<?php
/* Template Name: page(foot2) */
get_header(); ?>
<div id="content" class="" role="main" style="width:700px;padding:0 0 0 20px;">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<!-- <h2><?php the_title(); ?></h2> -->
<!-- <div class="entry"> -->
<div style="width:740px;">
<?php the_content('<p class="serif">Read the rest of this page »</p>'); ?>
<?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
</div>
</div>
<?php endwhile; endif; ?>
</div>
<?php get_footer(foot2.php); ?>
<br />
and my foot2.php
<?php /* Template Name: foot2 */ ?>
<div id="footer" role="contentinfo" style="width:720px; margin:0 auto; border-top:1px #ccc solid;">
<span style="font-weight:bold;">Wordpress modified by xxxxx. <a href="longurl">Contact Webmaster</a></span>
<a href="anotherurl/blog/">blog</a>
<br /><br />
</div>
</div>
<?php /* "Just what do you think you're doing Dave?" */ ?>
<?php wp_footer(foot2.php); ?>
</body></html>
I’m okay editing page.php and footer.php, but not in letting more than one footer be selected.