PageRenderTime 49ms CodeModel.GetById 23ms RepoModel.GetById 1ms app.codeStats 0ms

/search.php

https://github.com/philips/lpcwp
PHP | 67 lines | 51 code | 16 blank | 0 comment | 5 complexity | 704e028131f49db8a87818f6f43bb6a6 MD5 | raw file
  1. <?php get_header() ?>
  2. <div id="container">
  3. <div id="content">
  4. <?php if ( have_posts() ) : ?>
  5. <h2 class="page-title"><?php _e( 'Search Results for:', 'sandbox' ) ?> <span><?php the_search_query() ?></span></h2>
  6. <div id="nav-above" class="navigation">
  7. <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">&laquo;</span> Older results', 'sandbox' ) ) ?></div>
  8. <div class="nav-next"><?php previous_posts_link( __( 'Newer results <span class="meta-nav">&raquo;</span>', 'sandbox' ) ) ?></div>
  9. </div>
  10. <?php while ( have_posts() ) : the_post() ?>
  11. <div id="post-<?php the_ID() ?>" class="<?php sandbox_post_class() ?>">
  12. <h3 class="entry-title"><a href="<?php the_permalink() ?>" title="<?php printf( __( 'Permalink to %s', 'sandbox' ), the_title_attribute('echo=0') ) ?>" rel="bookmark"><?php the_title() ?></a></h3>
  13. <div class="entry-date"><abbr class="published" title="<?php the_time('Y-m-d\TH:i:sO') ?>"><?php unset($previousday); printf( __( '%1$s &#8211; %2$s', 'sandbox' ), the_date( '', '', '', false ), get_the_time() ) ?></abbr></div>
  14. <div class="entry-content">
  15. <?php the_excerpt( __( 'Read More <span class="meta-nav">&raquo;</span>', 'sandbox' ) ) ?>
  16. </div>
  17. <?php if ( $post->post_type == 'post' ) { ?>
  18. <div class="entry-meta">
  19. <span class="author vcard"><?php printf( __( 'By %s', 'sandbox' ), '<a class="url fn n" href="' . get_author_link( false, $authordata->ID, $authordata->user_nicename ) . '" title="' . sprintf( __( 'View all posts by %s', 'sandbox' ), $authordata->display_name ) . '">' . get_the_author() . '</a>' ) ?></span>
  20. <span class="meta-sep">|</span>
  21. <span class="cat-links"><?php printf( __( 'Posted in %s', 'sandbox' ), get_the_category_list(', ') ) ?></span>
  22. <span class="meta-sep">|</span>
  23. <?php the_tags( __( '<span class="tag-links">Tagged ', 'sandbox' ), ", ", "</span>\n\t\t\t\t\t<span class=\"meta-sep\">|</span>\n" ) ?>
  24. <?php edit_post_link( __( 'Edit', 'sandbox' ), "\t\t\t\t\t<span class=\"edit-link\">", "</span>\n\t\t\t\t\t<span class=\"meta-sep\">|</span>\n" ) ?>
  25. <span class="comments-link"><?php comments_popup_link( __( 'Comments (0)', 'sandbox' ), __( 'Comments (1)', 'sandbox' ), __( 'Comments (%)', 'sandbox' ) ) ?></span>
  26. </div>
  27. <?php } ?>
  28. </div><!-- .post -->
  29. <?php endwhile; ?>
  30. <div id="nav-below" class="navigation">
  31. <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">&laquo;</span> Older results', 'sandbox' ) ) ?></div>
  32. <div class="nav-next"><?php previous_posts_link( __( 'Newer results <span class="meta-nav">&raquo;</span>', 'sandbox' ) ) ?></div>
  33. </div>
  34. <?php else : ?>
  35. <div id="post-0" class="post no-results not-found">
  36. <h2 class="entry-title"><?php _e( 'Nothing Found', 'sandbox' ) ?></h2>
  37. <div class="entry-content">
  38. <p><?php _e( 'Sorry, but nothing matched your search criteria. Please try again with some different keywords.', 'sandbox' ) ?></p>
  39. </div>
  40. <form id="searchform-no-results" class="blog-search" method="get" action="<?php bloginfo('home') ?>">
  41. <div>
  42. <input id="s-no-results" name="s" class="text" type="text" value="<?php the_search_query() ?>" size="40" />
  43. <input class="button" type="submit" value="<?php _e( 'Find', 'sandbox' ) ?>" />
  44. </div>
  45. </form>
  46. </div><!-- .post -->
  47. <?php endif; ?>
  48. </div><!-- #content -->
  49. </div><!-- #container -->
  50. <?php get_sidebar() ?>
  51. <?php get_footer() ?>