-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.php
41 lines (36 loc) · 1.28 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
<?php get_header('single'); ?>
<div class="post_wrapper_single container-fluid" style="color:white">
<div class="col-md-2 menu_single">
<span style="font-size:2em">Menu</span><hr style="width: 100%;color:white">
<?php wp_nav_menu( array( 'primary-menu' => __( 'Primary Menu' ) ) ); ?>
</div>
<div class="col-md-8 post_single">
<!-- Posts -->
<div class="col-md-12 row post_wrapper container-fluid row">
<?php while ( have_posts() ) : the_post(); ?>
<div class="col-md-12 single_post trans">
<div class="row col-md-12 post_ava">
<div class="col-md-6">
<?php echo get_avatar(get_the_author_meta( 'ID' ),40)."<div class='p_date'>".get_the_date()."</div>";?>
</div>
<div class="col-md-6" style="font-size: 2em">
<?php echo get_the_author();?>
</div>
</div>
<div class="row col-md-12 post_title">
<a href="<?php echo get_permalink();?>" class="link_post"><?php the_title()?></a>
</div>
<div class="row col-md-12 post_content">
<?php the_content("<br><span class='readmore'>Dig More</span>"); ?>
<?php comments_template(); ?>
</div>
</div>
<?php endwhile; ?>
</div>
</div>
<!-- The Sidebar / Search Area -->
<div class="col-md-2 sidebar_wrapper">
<?php get_sidebar();?>
</div>
</div>
<?php get_footer(); ?>