-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.php
39 lines (36 loc) · 931 Bytes
/
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
<?php
/**
* Template Name: Search Result Template
*/
get_header();
?>
<!-- BEGIN CONTENT -->
<section id="content">
<div class="wrapper page_text">
<h1 class="page_title"><?php _e("Search Result"); ?></h1>
<?php
if(function_exists('breadcrumbs')){
breadcrumbs();
}
?>
<div class="columns">
<div class="column column75">
<?php
if(function_exists(get_custom_search_results())){
get_custom_search_results();
}
?>
</div>
<div class="column column25">
<?php
get_sidebar();
?>
</div>
</div>
</div>
</section>
<!-- END CONTENT -->
</div>
</div>
<?php
get_footer();