Advertisement
Guest User

minoo

a guest
Oct 22nd, 2011
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. <?php
  2.  
  3. /*
  4. Search
  5.  
  6. Establishes the iFeature search functionality.
  7.  
  8. Copyright (C) 2011 CyberChimps
  9. */
  10.  
  11. get_header(); ?>
  12.  
  13. <div id="content_wrap">
  14.  
  15. <div id="content_left">
  16.  
  17. <?php if (function_exists('ifeature_breadcrumbs') && $options['if_disable_breadcrumbs'] != "1") ifeature_breadcrumbs(); ?>
  18.  
  19. <div class="content_padding">
  20.  
  21. <?php if (have_posts()) : ?>
  22.  
  23. <br><h2><font size="5"> <?php printf( __(' Search Results For:', 'ifeature' )); ?> <?php echo get_search_query(); ?></font></h2><br/>
  24.  
  25.  
  26. <?php while (have_posts()) : the_post(); ?>
  27.  
  28. <div class="post_container">
  29.  
  30. <div <?php post_class() ?> id="post-<?php the_ID(); ?>">
  31.  
  32. <h2><a> id="post-<?php the_ID(); ?>"><a href="<phpthe_permalink() ?>"><?php the_title(); ?></a></h2>
  33. <?php get_template_part('meta', 'search' ); ?>
  34.  
  35. <div class="entry">
  36.  
  37. <?php the_excerpt(); ?>
  38.  
  39. </div>
  40.  
  41. </div>
  42.  
  43. </div><!--end post_container-->
  44. <?php endwhile; ?>
  45.  
  46. <?php get_template_part('pagination', 'Søg på siden' ); ?>
  47.  
  48. <?php else : ?>
  49.  
  50. <h2><?php printf( __( 'No posts found.' 'ifeature' )) ; ?></h2>
  51.  
  52. <?php endif; ?>
  53. </div><!--end content_padding-->
  54. </div><!--end content_left-->
  55.  
  56. <div id="sidebar_right"><?php get_sidebar(); ?></div>
  57. </div><!--end content_wrap-->
  58. <div class="clear"></div>
  59. <?php get_footer(); ?>
  60.  
  61.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement