-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsearch.php
More file actions
31 lines (30 loc) · 850 Bytes
/
search.php
File metadata and controls
31 lines (30 loc) · 850 Bytes
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
<?php
namespace KVSun;
require_once __DIR__ . DIRECTORY_SEPARATOR . 'autoloader.php';
begin_file(__FILE__);
if (DEBUG_MODE) {
ob_start();
$console = \shgysk8zer0\Core\Console::getInstance();
$timer = new \shgysk8zer0\Core\Timer();
$console->asErrorHandler();
$console->asExceptionHandler();
}
get_header();
?>
<div id="blocks-wrapper" class="clearfix">
<div id="blocks-left" class="eleven columns clearfix">
<!--Search Results content-->
<h2 class="blogpost-wrapper-title">
<?php printf(__('Search results for "%s" ', 'bresponZive'), get_search_query()); ?>
</h2>
<?php get_template_part( 'includes/blog', 'loop' );?>
<!--/.blogposts-wrapper-->
</div>
<?php
end_file(__FILE__);
if (DEBUG_MODE) {
$console->log("Loaded in {$timer} ms.");
$console->info(get_included_files());
$console->sendLogHeader();
}
?>