This repository has been archived by the owner on Jun 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.php
75 lines (52 loc) · 2.48 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
<?php
/**
* The template for displaying Search Results pages.
*/
get_header(); ?>
<div id="content" class="clearfix">
<div id="main" class="clearfix" role="main">
<?php if ( have_posts() ) : ?>
<div id="post-boxes-wrap" class="clearfix">
<header class="page-header">
<h1 class="page-title"><?php printf( __( 'Search Results for: %s', 'magazino' ), '<span class="colortxt">' . get_search_query() . '</span>' ); ?></h1>
<div class="grnbar"></div>
</header>
<?php /* Start the Loop */ ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content-archive', 'search' ); ?>
<?php endwhile; ?>
<?php if (function_exists("magazino_pagination")) {
magazino_pagination();
} elseif (function_exists("magazino_content_nav")) {
magazino_content_nav( 'nav-below' );
}?>
</div>
<?php else : ?>
<article id="post-0" class="post no-results not-found">
<header class="entry-header">
<h1 class="entry-title"><?php _e( 'Nothing Found', 'magazino' ); ?></h1>
</header><!-- .entry-header -->
<div class="entry-content post_content">
<p><?php _e( 'Sorry, but nothing matched your search terms. Please try again with some different keywords.', 'magazino' ); ?></p>
<?php get_search_form(); ?>
<p><?php _e('Or you can try these links below.', 'magazino'); ?></p>
<?php the_widget( 'WP_Widget_Recent_Posts' ); ?>
<div class="widget">
<h2 class="widget-title"><?php _e( 'Most Used Categories', 'magazino' ); ?></h2>
<ul>
<?php wp_list_categories( array( 'orderby' => 'count', 'order' => 'DESC', 'show_count' => 1, 'title_li' => '', 'number' => 10 ) ); ?>
</ul>
</div>
<?php
/* translators: %1$s: smilie */
$archive_content = '<p>' . sprintf( __( 'Try looking in the monthly archives. %1$s', 'magazino' ), convert_smilies( ':)' ) ) . '</p>';
the_widget( 'WP_Widget_Archives', 'dropdown=1', "after_title=</h2>$archive_content" );
?>
<?php the_widget( 'WP_Widget_Tag_Cloud' ); ?>
</div><!-- .entry-content -->
</article><!-- #post-0 -->
<?php endif; ?>
</div> <!-- end #main -->
<?php get_sidebar(); ?>
</div> <!-- end #content -->
<?php get_footer(); ?>