Title: Add a second Footer.php file
Last modified: August 19, 2016

---

# Add a second Footer.php file

 *  [Curtis Stevens](https://wordpress.org/support/users/gotmerchant/)
 * (@gotmerchant)
 * [16 years, 5 months ago](https://wordpress.org/support/topic/add-a-second-footerphp-file/)
 * I have added a second customized footer.php page called footer1.php and located
   in the same folder on my server. It shows up in my admin area now.
 * What does this code need to be to call it up right?
 * <?php get_footer(); ?>
 * Thanks!
    Curtis

Viewing 5 replies - 1 through 5 (of 5 total)

 *  [doc4](https://wordpress.org/support/users/doc4/)
 * (@doc4)
 * [16 years, 5 months ago](https://wordpress.org/support/topic/add-a-second-footerphp-file/#post-1278449)
 * gotmerchant,
 *     ```
       <?php get_footer(); ?>
       ```
   
 *  will only call on the footer.php file. Try this instead:
 *     ```
       <?php include (TEMPLATEPATH . '/footer1.php'); ?>
       ```
   
 *  Thread Starter [Curtis Stevens](https://wordpress.org/support/users/gotmerchant/)
 * (@gotmerchant)
 * [16 years, 5 months ago](https://wordpress.org/support/topic/add-a-second-footerphp-file/#post-1278556)
 * Thanks! I don’t know php, I’m just winging it!
 *  [MichaelH](https://wordpress.org/support/users/michaelh/)
 * (@michaelh)
 * [16 years, 5 months ago](https://wordpress.org/support/topic/add-a-second-footerphp-file/#post-1278560)
 * Also:
 *     ```
       get_header('myheader'); // will include header-myheader.php
   
       get_footer('myfooter'); // will include footer-myfooter.php
   
       get_sidebar('mysidebar'); // will include sidebar-mysidebar.php
       ```
   
 *  Thread Starter [Curtis Stevens](https://wordpress.org/support/users/gotmerchant/)
 * (@gotmerchant)
 * [16 years, 5 months ago](https://wordpress.org/support/topic/add-a-second-footerphp-file/#post-1278570)
 * Thanks!
 *  [doc4](https://wordpress.org/support/users/doc4/)
 * (@doc4)
 * [16 years, 4 months ago](https://wordpress.org/support/topic/add-a-second-footerphp-file/#post-1278687)
 * MichaelH,
 * Nice addition, hopefully this helps others.

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Add a second Footer.php file’ is closed to new replies.

 * In: [Everything else WordPress](https://wordpress.org/support/forum/miscellaneous/)
 * 5 replies
 * 3 participants
 * Last reply from: [doc4](https://wordpress.org/support/users/doc4/)
 * Last activity: [16 years, 4 months ago](https://wordpress.org/support/topic/add-a-second-footerphp-file/#post-1278687)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
