-
Notifications
You must be signed in to change notification settings - Fork 1
/
search.php
133 lines (122 loc) · 4.52 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<?php
/**
* The template for displaying archive pages
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package context-blog
*/
get_header();
context_blog_simple_breadcrumb();
global $context_blog_count_mainblog;
$count_for_desgin2 = '';
?>
<div class="inside-page search">
<div class="container">
<div class="list-page">
<div class="row">
<?php
$context_blog_section_number = 24;
$context_blog_category = 0;
$context_blog_meta = 1;
$context_blog_date = 0;
$context_blog_comment = 1;
$context_blog_excerpt = 0;
$context_blog_readmore = 0;
$context_blog_modal = 0;
if ( ( get_theme_mod( 'context_blog_sidebar_enable_homepage', '1' ) == 1 and get_option( 'show_on_front' ) == 'posts' )
|| ( get_theme_mod( 'context_blog_sidebar_enable_blogpage', '1' ) == 1 and get_option( 'show_on_front' ) == 'page' ) ) :
if ( ! is_active_sidebar( 'sidebar-1' )
and get_theme_mod( 'context_blog_sidebar_about_author_enable', '1' ) == 0
and get_theme_mod( 'context_blog_sidebar_latest_blog_enable', 1 ) == 0
and get_theme_mod( 'context_blog_sidebar_quote_enable', '1' ) == 0
and get_theme_mod( 'context_blog_sidebar_stay_connected_enable', 1 ) == 0 ) :
?>
<div class="col-lg-12 col-md-12 main-blog-body">
<?php
else :
?>
<div class="col-lg-8 col-md-7 main-blog-body">
<?php
endif;
else :
?>
<div class="col-lg-12 col-md-12 main-blog-body">
<?php
endif;
$context_blog_count_mainblog = 1;
if ( have_posts() ) :
/* Start the Loop */
while ( have_posts() ) :
the_post();
if ( $context_blog_count_mainblog == 1 ) :
if ( get_theme_mod( 'context_blog_main_blog_design', '2' ) == 1 || get_theme_mod( 'context_blog_main_blog_design', '2' ) == 2 ) :
?>
<div class="single-blog">
<?php
endif;
if ( get_theme_mod( 'context_blog_main_blog_design', '2' ) == 3 ) :
?>
<div class="masionary-view bordered">
<?php elseif ( get_theme_mod( 'context_blog_main_blog_design', '2' ) == 4 ) : ?>
<div class="list-view ">
<?php
endif;
endif;
if ( $context_blog_count_mainblog == 2 ) :
if ( get_theme_mod( 'context_blog_main_blog_design', '2' ) == 2 ) :
?>
<div class="masionary-view bordered">
<?php
$count_for_desgin2 = 'present';
endif;
endif;
context_blog_content_core( $context_blog_section_number, $context_blog_category, $context_blog_meta, $context_blog_date, $context_blog_comment, $context_blog_excerpt, $context_blog_readmore, $context_blog_modal );
$context_blog_count_mainblog++;
endwhile;
if ( get_theme_mod( 'context_blog_main_blog_design', '2' ) == 2 && $count_for_desgin2 == 'present' ) :
?>
</div > <!-- this div is for closing in case design 2 is select which has opening from line 52 -->
<?php endif; ?>
</div> <!-- this div is for line 40 or 43 or 46 closing-->
<!-- Start Pagination -->
<div class="pagination-main">
<?php
the_posts_pagination(
array(
'mid_size' => 2,
'prev_text' => __( 'Previous', 'context-blog' ),
'next_text' => __( 'Next', 'context-blog' ),
)
);
?>
<!--/ End Pagination -->
</div>
<?php
else :
get_template_part( 'template-parts/content', 'none' );
endif;
?>
</div> <!-- this div is for line 26 or 28 or 31 closing-->
<?php
if ( ( get_theme_mod( 'context_blog_sidebar_enable_homepage', '1' ) == 1 and get_option( 'show_on_front' ) == 'posts' )
|| ( get_theme_mod( 'context_blog_sidebar_enable_blogpage', '1' ) == 1 and get_option( 'show_on_front' ) == 'page' ) ) :
if ( is_active_sidebar( 'sidebar-1' )
or get_theme_mod( 'context_blog_sidebar_about_author_enable', '1' ) == 1
or get_theme_mod( 'context_blog_sidebar_latest_blog_enable', '1' ) == 1
or get_theme_mod( 'context_blog_sidebar_quote_enable', '1' ) == 1
or get_theme_mod( 'context_blog_sidebar_stay_connected_enable', '1' ) == 1 ) :
?>
<div class="col-lg-4 col-md-5">
<?php get_sidebar(); ?>
</div>
<?php
endif;
endif;
?>
</div>
</div>
</div>
</div>
<?php
get_footer();