-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.php
28 lines (23 loc) · 844 Bytes
/
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
<div class="clearfix"><?php get_header(); ?></div>
<div class="clearfix">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<article class="col-xs-12" id="content" role="main">
<div class="panel panel-dark">
<div class="panel-heading">
<h2 class="light-text"><?php
$post_id = url_to_postid($url);
$page = get_post($post_id);
echo $page->post_title;
?></h2>
</div>
<div class="panel-body">
<div class="col-xs-6">
<?php echo get_the_post_thumbnail() ?>
</div>
<p><?php the_content(); ?></p>
</div>
</div>
</article>
</div>
<?php endwhile; endif; ?>
<div class="clearfix"><?php get_footer(); ?></div>