-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.php
executable file
·81 lines (64 loc) · 3.95 KB
/
search.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<?php get_header() ?>
<section id="container">
<section id="content">
<?php if ( have_posts() ) : ?>
<h2 class="page-title"><?php _e( 'Search Results for:', 'sandbox' ) ?> <span><?php the_search_query() ?></span></h2>
<nav id="nav-above" class="navigation">
<div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">«</span> Older results', 'sandbox' ) ) ?></div>
<div class="nav-next"><?php previous_posts_link( __( 'Newer results <span class="meta-nav">»</span>', 'sandbox' ) ) ?></div>
</nav>
<?php while ( have_posts() ) : the_post() ?>
<article id="post-<?php the_ID() ?>" class="<?php sandbox_post_class() ?>">
<div class="entry-date"><div><?php the_time('j') ?><br /><?php the_time('M') ?></div></div>
<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>
<div class="entry-meta-top">
<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>
<span class="cat-links"><?php printf( __( 'Posted in %s', 'sandbox' ), get_the_category_list(', ') ) ?></span>
</div>
<div class="entry-content">
<?php the_excerpt( __( 'Read More <span class="meta-nav">»</span>', 'sandbox' ) ) ?>
<?php the_tags( __( '<span class="tag-links">Tagged ', 'sandbox' ), " ", "</span>\n" ) ?>
</div>
<?php if ( $post->post_type == 'post' ) { ?>
<div class="entry-meta">
<div class="social-buttons">
<div><fb:like href="<?php the_permalink() ?>" send="false" layout="button_count" width="100" show_faces="false"></fb:like></div>
<div><a href="https://twitter.com/share" class="twitter-share-button" data-url="<?php the_permalink() ?>" data-text="<?php the_title() ?>" data-count="none" data-via="xploit29" data-lang="es">Twittear</a></div>
<div><g:plusone size="medium" href="<?php the_permalink() ?>"></g:plusone></div>
</div>
<div class="right">
<?php edit_post_link( __( 'Edit', 'sandbox' ), "\t\t\t\t\t<span class=\"edit-link\">", "</span>\n" ) ?>
<span class="comments-link"><?php comments_popup_link( __( 'Comments (0)', 'sandbox' ), __( 'Comments (1)', 'sandbox' ), __( 'Comments (%)', 'sandbox' ) ) ?></span>
</div>
</div>
<?php } ?>
</article><!-- .post -->
<?php endwhile; ?>
<section class="ad" id="ad468">
<?php include_once( 'ad/ad468.html' ) ?>
</section>
<nav id="nav-below" class="navigation">
<div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">«</span> Older results', 'sandbox' ) ) ?></div>
<div class="nav-next"><?php previous_posts_link( __( 'Newer results <span class="meta-nav">»</span>', 'sandbox' ) ) ?></div>
</nav>
<?php else : ?>
<article id="post-0" class="post no-results not-found">
<h2 class="entry-title"><?php _e( 'Nothing Found', 'sandbox' ) ?></h2>
<div class="entry-content">
<p><?php _e( 'Sorry, but nothing matched your search criteria. Please try again with some different keywords.', 'sandbox' ) ?></p>
</div>
<form id="searchform-no-results" class="blog-search" method="get" action="<?php bloginfo('home') ?>">
<div>
<input id="s-no-results" name="s" class="text" type="text" value="<?php the_search_query() ?>" size="40" required />
<input class="button" type="submit" value="<?php _e( 'Find', 'sandbox' ) ?>" />
</div>
</form>
</article><!-- .post -->
<section class="ad" id="ad468">
<?php include_once( 'ad/ad468.html' ) ?>
</section>
<?php endif; ?>
</section><!-- #content -->
</section><!-- #container -->
<?php get_sidebar() ?>
<?php get_footer() ?>