It seems like I just need to get the right "get_footer" and "get_sidebar" but I have not been able to figure it out. And it doesn't seem like I can just remove the sidebar from that page since it's not actually a page. While I'd prefer keeping the sidebar, it's more important that the footer extends.
Website address: urbannestpdx.com ETA: WP V3.3.1 / ATA V3.7.3
Here is a page with it missing on the results of the home search - from the sidebar links Buckman: urbannestpdx.com/homesearch/buckman/ss/90517/
Here is the plugin template:
Code:
<?php /* Template Name: HQ Map Template */ get_header(); ?> <div id="content"> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <?php the_content(__('[Read more]'));?> <?php endwhile; else: ?> <p><?php _e('Sorry, no posts matched your criteria.'); ?></p><?php endif; ?> <?php //include(TEMPLATEPATH."/sidebar.php");?> </div> <!-- The main column ends --> <?php get_footer(); ?>
thanks for any advice!
