-
Notifications
You must be signed in to change notification settings - Fork 0
/
page.php
42 lines (41 loc) · 1.46 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
<?php get_header(); ?>
<main>
<div class="content article page">
<article>
<h2 class="title"><?php the_title(); ?></h2>
<time class="date"><i class="ori-time"></i>
<?php the_time(get_option("date_format")); ?>
</time>
<?php if (
strpos(
get_theme_mod("or_ads_display_place"),
"page_top"
) !== false
):
echo get_theme_mod("or_ads_display"); ?>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
<?php
endif; ?>
<section class="article-body"><?php the_content(); ?></section>
<?php if (
strpos(
get_theme_mod("or_ads_display_place"),
"page_bottom"
) !== false
):
echo get_theme_mod("or_ads_display"); ?>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
<?php
endif; ?>
</article>
</div>
<?php if (!get_theme_mod("or_page_design_sidebar")):
get_sidebar();
endif; ?>
</main>
<?php get_footer(); ?>
<?php wp_footer(); ?>