Forum Replies Created

Viewing 1 replies (of 1 total)
  • The code below works perfect in v2.9. Both sidebars show up and my pages show in between them. Upgrade to v3.0 and both sidebars show up fine, but the pages do not. I dont think you can get much more basic than this. So why does 2.9 work fine and 3.0 not?

    The website is https://www.redlettercoaching.com.au . It has been moved back to v2.9.

    <?php
    /**
    * @package WordPress
    * @subpackage RedLetter
    */
    get_header();
    ?>
    <?php get_sidebar(); ?>

    <div id=”mainContent”>
    <?php the_content(); ?>

    <!– end #mainContent –></div>
    <?php get_sidebar(‘secondary’); ?>
    <?php get_footer(); ?>

Viewing 1 replies (of 1 total)