Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php if ( ! have_posts() ) : ?>
- <div id="post-0" class="post error404 not-found">
- <h1 class="entry-title"><?php _e( 'Not Found', 'imbalance2' ); ?></h1>
- <div class="entry-content">
- <p><?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'imbalance2' ); ?></p>
- <?php get_search_form(); ?>
- </div><!-- .entry-content -->
- </div><!-- #post-0 -->
- <?php endif; ?>
- <?php $imbalance2_theme_options = get_option('imbalance2_theme_options') ?>
- <div id="boxes">
- <!--So lets set our category to only show fashion-->
- <?php query_posts($query_string . '&cat=8'); ?>
- <!--Start the loop-->
- <?php while ( have_posts() ) : the_post(); ?>
- <!--Inside the loop-->
- <div class="box">
- <!--The post title-->
- <?php the_title(); ?>
- <!--The post image-->
- <a href="<?php the_permalink(); ?>"><?php the_post_thumbnail('homepage-thumb', array('alt' => '', 'title' => '')) ?></a>
- </div>
- <?php endwhile; ?>
- </div>
- <?php rewind_posts(); ?>
- <div id="boxes2">
- <!--So lets set our category to only show fashion-->
- <?php query_posts($query_string . '&cat=9'); ?>
- <!--Start the loop-->
- <?php while ( have_posts() ) : the_post(); ?>
- <!--Inside the loop-->
- <div class="box">
- <!--The post title-->
- <?php the_title(); ?>
- <!--The post image-->
- <a href="<?php the_permalink(); ?>"><?php the_post_thumbnail('homepage-thumb', array('alt' => '', 'title' => '')) ?></a>
- </div>
- <?php endwhile; ?>
- </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement