Trouble editing template for multiple pages
-
Okay let me see if I can explain this in a way it makes sense..
I made a page and used a page template that provides a bunch of page sections for me to place widgets (there were 3 other templates to choose from but this was the only one in the drop down that provided what I was looking for). So I used this template on one page, customized it, and moved on to the next page. The next page I wanted to use the same template with those customization options for different sections of the page. So I selected that template again and created the page. When I went to the new page, everything I had customized from the previous page was now on this new page (basically, it was an exact clone of the first page I was working on).
What I wanted was to start with a blank slate with the same customization options of different sections and widgets. How can I make this happen?
The theme I am using is called Applique by Dahz
The template code is as follows:<?php /** * Template Name: Front Page * * The Front Page Template. * */ ?> <?php get_header(); ?> <div id="content-wrap"> <div class="main-sidebar-container container"> <div class="row"> <?php get_sidebar( 'front-first' ); ?> <?php get_sidebar( 'front-second' ); ?> <?php get_sidebar( 'front-third' ); ?> <?php get_sidebar( 'front-fourth' ); ?> <?php get_sidebar( 'front-last' ); ?> </div> </div> <?php echo df_social_account(); ?> <?php echo df_miscellaneous(); ?> </div> <?php get_footer(); ?>
Side Note:
I attempted to make a new template, basically a duplicate file and renamed it. However when I selected it from the templates drop down I still had the same issue. I’m not a coder, so if anyone could shed any light on a fix for this I would so greatly appreciate it.
- The topic ‘Trouble editing template for multiple pages’ is closed to new replies.