-
Notifications
You must be signed in to change notification settings - Fork 0
/
page.php
82 lines (52 loc) · 1.47 KB
/
page.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
<?php
/**
* The template for displaying all single posts
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post
*
* @package Roach
* @author Shameem Reza
* @since 0.0.1
*/
get_header();
$hide_sidebar = get_post_meta(get_the_ID(), "hide_sidebar", true);
$roach_full_header = get_post_meta(get_the_ID(), "roach_header_design", true);
$wc = roach_wc_check();
if ($wc) {
$hide_sidebar = true;
}
if (get_theme_mod("roach_show_sidebar_page") && !$hide_sidebar):
$class_content = "content-thin";
else:
$class_content = "article-full";
endif;
?>
<?php if ($roach_full_header) { ?>
<?php roach_show_hero(); ?>
<?php } ?>
<main class="content-page">
<?php roach_show_ads(5); ?>
<?php if (have_posts()): ?>
<?php while (have_posts()):
the_post(); ?>
<?php roach_data_images(); ?>
<article class="<?php echo $class_content; ?>">
<?php if (!$roach_full_header) { ?>
<?php get_template_part("template-parts/header/content", "header"); ?>
<?php } ?>
<?php get_template_part("template-parts/page/content", "page"); ?>
</article>
<?php
endwhile;else: ?>
<?php get_template_part("template-parts/none/content", "none"); ?>
<?php endif; ?>
<?php if (get_theme_mod("roach_show_sidebar_page") && !$hide_sidebar):
get_sidebar();
endif; ?>
</main>
<?php
get_footer();
if (get_theme_mod("roach_enable_page_index")):
do_action("create_index");
endif;
?>