• Could someone please help me with creating a basic template in this theme?

    I know how to make a copy of the page.php, remame it and open it for editing.

    But I don’t know what code to use and where to place it.

    The page template I want to create is the same as the theme default except for one difference: instead of the default sidebar on the left, I have a custom widget sidebar on the right.

    The default page.php code is:

    <?php
    /**
    * The template for displaying all pages.
    *
    * This is the template that displays all pages by default.
    *
    * @package ThinkUpThemes
    */

    get_header(); ?>

    <?php while ( have_posts() ) : the_post(); ?>

    <?php get_template_part( ‘content’, ‘page’ ); ?>

    <?php endwhile; wp_reset_query(); ?>

    <?php get_footer(); ?>

The topic ‘How to create a basic template in Minimaze?’ is closed to new replies.