-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.php
122 lines (106 loc) · 4.06 KB
/
index.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
<?php get_header(); ?>
<?php
// Blog setup
$blog_layout = stm_option('blog_layout');
// Sidebar Blog
$blog_sidebar_id = stm_option('blog_sidebar');
$blog_sidebar_position = stm_option('blog_sidebar_position', 'none');
$content_before = $content_after = $sidebar_before = $sidebar_after = '';
// Teacher Sidebar
if (get_post_type() == 'teachers') {
$blog_sidebar_id = stm_option('teachers_sidebar');
$blog_sidebar_position = stm_option('teachers_sidebar_position', 'none');
}
if (!empty($_GET['sidebar_id'])) {
$blog_sidebar_id = intval($_GET['sidebar_id']);
}
if (!empty($_GET['sidebar_position']) and $_GET['sidebar_position'] == 'right') {
$blog_sidebar_position = 'right';
} elseif (!empty($_GET['sidebar_position']) and $_GET['sidebar_position'] == 'left') {
$blog_sidebar_position = 'left';
} elseif (!empty($_GET['sidebar_position']) and $_GET['sidebar_position'] == 'none') {
$blog_sidebar_position = 'none';
}
if (!empty($_GET['layout']) and $_GET['layout'] == 'grid') {
$blog_layout = 'grid';
}
if ($blog_sidebar_id) {
$blog_sidebar = get_post($blog_sidebar_id);
}
if (empty($blog_sidebar)) {
$blog_sidebar_position = 'none';
}
if (is_active_sidebar('default') and get_post_type() == 'post' or is_search()) {
$blog_sidebar = 'widget_area';
$blog_sidebar_position = 'right';
}
if ($blog_sidebar_position == 'right' && isset($blog_sidebar)) {
$content_before .= '<div class="row">';
$content_before .= '<div class="col-lg-9 col-md-9 col-sm-12 col-xs-12">';
$content_after .= '</div>'; // col
$sidebar_before .= '<div class="col-lg-3 col-md-3 hidden-sm hidden-xs">';
// .sidebar-area
$sidebar_after .= '</div>'; // col
$sidebar_after .= '</div>'; // row
}
if ($blog_sidebar_position == 'left' && isset($blog_sidebar)) {
$content_before .= '<div class="row">';
$content_before .= '<div class="col-lg-9 col-lg-push-3 col-md-9 col-md-push-3 col-sm-12 col-xs-12">';
$content_after .= '</div>'; // col
$sidebar_before .= '<div class="col-lg-3 col-lg-pull-9 col-md-3 col-md-pull-9 hidden-sm hidden-xs">';
// .sidebar-area
$sidebar_after .= '</div>'; // col
$sidebar_after .= '</div>'; // row
}
?>
<!-- Title -->
<?php get_template_part('partials/title_box'); ?>
<div class="container blog_main_layout_<?php echo esc_attr($blog_layout); ?>">
<?php if (have_posts()): ?>
<?php echo wp_kses_post($content_before); ?>
<div class="blog_layout_<?php echo esc_attr($blog_layout . ' sidebar_position_' . $blog_sidebar_position); ?>">
<div class="row">
<?php while (have_posts()): the_post(); ?>
<?php if (get_post_type() == 'teachers') {
get_template_part('partials/loop', 'teacher');
} else {
if ($blog_layout == 'grid') {
get_template_part('partials/loop', 'grid');
} else {
get_template_part('partials/loop', 'list');
}
} ?>
<?php endwhile; ?>
</div>
<?php
echo paginate_links(array(
'type' => 'list',
'prev_text' => '<i class="fa fa-chevron-left"></i><span class="pagi_label">' . __('Previous', 'masterstudy') . '</span>',
'next_text' => '<span class="pagi_label">' . __('Next', 'masterstudy') . '</span><i class="fa fa-chevron-right"></i>',
));
?>
</div> <!-- blog_layout -->
<?php echo wp_kses_post($content_after); ?>
<?php echo wp_kses_post($sidebar_before); ?>
<div class="sidebar-area sidebar-area-<?php echo esc_attr($blog_sidebar_position); ?>">
<?php
if (isset($blog_sidebar) && $blog_sidebar_position != 'none') {
if ($blog_sidebar == 'widget_area') {
dynamic_sidebar('default');
} else {
echo apply_filters('the_content', $blog_sidebar->post_content);
}
}
?>
</div>
<?php echo wp_kses_post($sidebar_after); ?>
<?php else: ?>
<div class="no-results">
<h3><?php esc_html_e('No result has been found. Please check for correctness.', 'masterstudy'); ?></h3>
<div class="widget_search">
<?php echo get_search_form(); ?>
</div>
</div>
<?php endif; ?>
</div>
<?php get_footer(); ?>