Not signed in (Sign In)

Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.

    • CommentAuthortheresel
    • CommentTimeJan 13th 2010
     
    I've been able to integrate Plogger nicely into Wordpress but I have a problem with the dynamic menu. I've created a page named "Photos" under Wordpress and had it redirect to my Plogger gallery with a redirect plugin, but when I click on the link "Photos" the link itself doesn't stay active, it's the "Home" button that is active when we are on the photos page. Did I miss something?? You can see the problem here: http://www.carnavalhearstcarnival.com/gallery/

    Here's the code for my index.php page for the gallery:
    <?php require('../wp-blog-header.php');
    require("gallery.php"); ?>

    <?php get_header(); ?>

    <div class="art-contentLayout">
    <?php include (TEMPLATEPATH . '/sidebar1.php'); ?><div class="art-content">
    <div class="art-Post-body">

    <?php the_gallery_head(); ?>
    <?php the_gallery(); ?>


    </div></div>

    </div>
    <div class="cleared"></div>

    <?php get_footer(); ?>
    •  
      CommentAuthorsidtheduck
    • CommentTimeJan 13th 2010
     
    Try this. Replace:
    <?php require('../wp-blog-header.php');
    require("gallery.php"); ?>

    with this:
    <?php $_GET['page_id'] = 7;
    $_REQUEST['page_id'] = 7;
    require('../wp-blog-header.php');
    require("gallery.php"); ?>