-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcontent.php
More file actions
27 lines (26 loc) 路 681 Bytes
/
Copy pathcontent.php
File metadata and controls
27 lines (26 loc) 路 681 Bytes
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
<?php the_content ?>
<article>
<header class="article-header">
<?php the_category_image(); ?>
<h1 class="page-title">
<?php the_title(); ?>
</h1>
</header>
<section class="article-content">
<?php the_content(); ?>
</section>
<?php
if(is_single() && in_category('column' ) ):
get_template_part('social-button');
endif;?>
<nav class="adjacent_post_links">
<ul>
<li class="previous">
<?php previous_post_link('%link', '%title', true);?>
</li>
<li class="next">
<?php next_post_link('%link', '%title', true);?>
</li>
</ul>
</nav>
</article>