-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.php
39 lines (33 loc) · 1.09 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
<?php get_header(); ?>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- top page -->
<ins class="adsbygoogle"
style="display:block"
data-ad-client="ca-pub-7675064447281678"
data-ad-slot="8170203366"
data-full-width-responsive="true"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
<?php while (have_posts()) : the_post(); ?>
<main>
<article class="col">
<h1 class="page-title"><?php the_title(); ?></h1>
<?php the_post_thumbnail('medium'); ?>
<div class="page-content">
<?php the_content(); ?>
</div>
</article>
</main>
<?php endwhile; ?>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- bottom page -->
<ins class="adsbygoogle"
style="display:block"
data-ad-client="ca-pub-7675064447281678"
data-ad-slot="1225521064"
data-full-width-responsive="true"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
<?php get_footer(); ?>