Copying layout from an other theme.
-
Hello,
I’ve two theme installed on my WordPress, Splendid from Wpzoom and Gadgetine from Organge Themes. Gadgetine is the one I currently use. However, I don’t like the way it displays my posts in the archive page and category pages. https://themeforest.net/item/gadgetine-wordpress-theme-for-premium-magazine/full_screen_preview/132954
I would like to use the layout of my theme from WPzoom https://demo.wpzoom.com/splendid/category/beauty-style/
What is the best way to do that? I’ve done a bit research, but am still confused. If i use splendid from wpzoom as child theme and then change this on Gadgetine <?php include (TEMPLATEPATH . ‘/archive_left.php or achive_center.php ‘); ?> with the loop from Splendid. Will that work?
Bellow is the code of the themes archive.php
Gadgetine
<?php get_header(); ?> <?php include (TEMPLATEPATH . '/top.php'); ?> <div class="ct_w"> <div class="ct"> <?php include (TEMPLATEPATH . '/archive_left.php'); ?> <?php include (TEMPLATEPATH . '/single_center.php'); ?> <?php include (TEMPLATEPATH . '/single_right.php'); ?> </div> </div> <?php get_footer(); ?>
Splendid
<?php get_header(); ?> <div id="main"> <div id="content"> <?php get_template_part('loop', ''); ?> </div><!-- end #content --> <aside> <?php get_sidebar(); ?> </aside> <div class="cleaner"> </div> </div><!-- end #main --> <?php get_footer(); ?>
- The topic ‘Copying layout from an other theme.’ is closed to new replies.