Hej har gjort noget galt da jeg prøvede at fjerne sidebaren på min WP hjemmeside.
Området der er fejl på er:
<?php if (!is_home() ) { ?>
<?php get_sidebar(); ?>
<?php } ?>
kan bare ikke regne ud hvad jeg har gjort galt.
- <?php
- /**
- * The template for displaying all pages.
- *
- * This is the template that displays all pages by default.
- * Please note that this is the wordpress construct of pages
- * and that other 'pages' on your wordpress site will use a
- * different template.
- *
- */
- ?>
- <?php get_header(); ?>
- <div class="page-heading">
- <h1 class="page-title"><?php the_title(); ?></h1>
- <div class="clear"></div>
- </div>
- <!--Start Page Content -->
- <div class="page-content-container">
- <div class="page-content">
- <div class="grid_16 alpha">
- <div class="content-bar">
- <?php if (have_posts()) : the_post(); ?>
- <?php the_content(); ?>
- <div class="clear"></div>
- <?php wp_link_pages(array('before' => '<div class="page-link"><span>' . __('Pages:', 'black-bird') . '</span>', 'after' => '</div>')); ?>
- <?php endif; ?>
-
- <!--Start Comment box-->
- <?php comments_template(); ?>
- <!--End Comment box-->
-
- </div>
- </div>
- <div class="grid_8 omega">
- <!--Start Sidebar-->
- <?php if (!is_front_page()) {
-
- <?php if (!is_home() ) { ?>
- <?php get_sidebar(); ?>
- <?php } ?>
-
- <!--End Sidebar-->
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <?php get_footer(); ?>