-
Notifications
You must be signed in to change notification settings - Fork 0
/
search.php
94 lines (82 loc) · 1.63 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
82
83
84
85
86
87
88
89
90
91
92
93
94
<?php
/**
* @Packge : Colorlib
* @Version : 1.0
* @Author : Colorlib
* @Author URI : http://colorlib.com/wp/
*
*/
// Block direct access
if( !defined( 'ABSPATH' ) ){
exit( 'Direct script access denied.' );
}
// Call Header
get_header();
/**
*
* Hook for Blog, single, page, search, archive pages
* wrapper start with wrapper div, container, row.
*
* Hook marian_wrp_start
*
* @Hooked marian_wrp_start_cb
*
*/
do_action( 'marian_wrp_start' );
/**
*
* Hook for Blog, single, search, archive pages
* column start.
*
* Hook marian_blog_col_start
*
* @Hooked marian_blog_col_start_cb
*
*/
do_action( 'marian_blog_col_start' );
if( have_posts() ){
while( have_posts() ){
the_post();
// Post Contant
get_template_part( 'templates/content', get_post_format() );
}
// Pagination
get_template_part( 'templates/pagination' );
// Reset Data
wp_reset_postdata();
}else{
get_template_part( 'templates/content', 'none' );
}
/**
*
* Hook for Blog, single, search, archive pages
* column end.
*
* Hook marian_blog_col_end
*
* @Hooked marian_blog_col_end_cb
*
*/
do_action( 'marian_blog_col_end' );
/**
*
* Hook for Blog, single blog, search, archive pages sidebar.
*
* Hook marian_blog_sidebar
*
* @Hooked marian_blog_sidebar_cb
*
*/
do_action( 'marian_blog_sidebar' );
/**
* Hook for Blog, single, page, search, archive pages
* wrapper end with wrapper div, container, row.
*
* Hook marian_wrp_end
* @Hooked marian_wrp_end_cb
*
*/
do_action( 'marian_wrp_end' );
// Call Footer
get_footer();
?>