-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.php
70 lines (49 loc) · 2.28 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
<?php
/**
* The template for displaying Search Results pages.
*/
get_header(); ?>
<div id="content" class="clearfix">
<div id="main" class="col620 clearfix" role="main">
<?php if ( have_posts() ) : ?>
<header class="page-header">
<h1 class="page-title"><?php printf( __( 'Search Results for: %s', 'attorney' ), '<span class="colortxt">' . get_search_query() . '</span>' ); ?></h1>
</header>
<?php /* Start the Loop */ ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', 'search' ); ?>
<?php endwhile; ?>
<?php if (function_exists("attorney_pagination")) {
attorney_pagination();
} elseif (function_exists("attorney_content_nav")) {
attorney_content_nav( 'nav-below' );
}?>
<?php else : ?>
<article id="post-0" class="post no-results not-found">
<header class="entry-header">
<h1 class="entry-title"><?php _e( 'Não foi encontrado nenhuma notícia.', 'attorney' ); ?></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.', 'attorney' ); ?></p>
<?php get_search_form(); ?>
<p><?php _e('Or you can try these links below.', 'attorney'); ?></p>
<?php the_widget( 'WP_Widget_Recent_Posts' ); ?>
<div class="widget">
<h2 class="widget-title"><?php _e( 'Most Used Categories', 'attorney' ); ?></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', 'attorney' ), 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(); ?>