zeelifestyle

search

Jun 13th, 2011
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.52 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3.  
  4.  
  5.  
  6. <div id="search_wrap">
  7. <div class="wrap">
  8.  
  9.  
  10. <form method="get" id="searchform" action="<?php bloginfo('url'); ?>/">
  11. <fieldset>
  12. <input type="text" name="s" id="s" onblur="if (this.value == '') {this.value = 'Search...';}" onfocus="if (this.value == 'Search...') {this.value = '';}" value="Search..." />
  13. <input type="submit" class="button" value="" />
  14. </fieldset>
  15. </form>
  16.  
  17.  
  18.  
  19. <div class="text_size"><?php chgfontsize_display_options(); ?></div>
  20. </div></div>
  21.  
  22.  
  23.  
  24.  
  25.  
  26.  
  27.  
  28. <div id="main">
  29.  
  30.  
  31. <div class="wrap">
  32.  
  33. <div id="tagline">
  34. <h3 class="myclass typeface-js">
  35. Search results
  36. </h3>
  37. </div>
  38.  
  39. <!--Sidebar-->
  40. <?php get_sidebar(); ?>
  41.  
  42.  
  43. <!--Content right part-->
  44. <div class="col_3_4">
  45.  
  46.  
  47.  
  48. <?php if (have_posts()) : ?>
  49. <?php while (have_posts()) : the_post(); ?>
  50.  
  51. <div class="blog_item">
  52. <h3><a href="<?php the_permalink() ?>" rel="bookmark" class="myclass typeface-js" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h3>
  53. <div class="storycontent"> <?php the_excerpt() ?></div>
  54. </div>
  55.  
  56. <?php endwhile; ?>
  57. <br/>
  58. <div id="footer_nav"><?php posts_nav_link(' &nbsp;&nbsp;&nbsp;&nbsp; ', __('<span class="new">NEXT PAGE</span>'), __('<span class="old">PREVIOUS PAGE</span>')); ?></div>
  59.  
  60. <?php else : ?>
  61. Nothing found.
  62. <?php endif; ?>
  63.  
  64.  
  65. </div>
  66.  
  67. </div>
  68. </div>
  69.  
  70. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment