Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /*
- Search
- Establishes the iFeature search functionality.
- Copyright (C) 2011 CyberChimps
- */
- get_header(); ?>
- <div id="content_wrap">
- <div id="content_left">
- <?php if (function_exists('ifeature_breadcrumbs') && $options['if_disable_breadcrumbs'] != "1") ifeature_breadcrumbs(); ?>
- <div class="content_padding">
- <?php if (have_posts()) : ?>
- <h2><font size="5"> <?php printf( __(' Search Results For:', 'ifeature' )); ?> <?php echo get_search_query(); ?></font></h2><br />
- <?php while (have_posts()) : the_post(); ?>
- <div class="post_container">
- <div <?php post_class() ?> id="post-<?php the_ID(); ?>">
- <h2 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>
- <?php get_template_part('meta', 'search' ); ?>
- <div class="entry">
- <?php the_excerpt(); ?>
- </div>
- </div>
- </div><!--end post_container-->
- <?php endwhile; ?>
- <?php get_template_part('pagination', 'Søg på siden' ); ?>
- <?php else : ?>
- <h2><?php printf( __( 'No posts found.' 'ifeature' )) ; ?></h2>
- <?php endif; ?>
- </div><!--end content_padding-->
- </div><!--end content_left-->
- <div id="sidebar_right"><?php get_sidebar(); ?></div>
- </div><!--end content_wrap-->
- <div class="clear"></div>
- <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement