-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsingle-articles.php
More file actions
79 lines (58 loc) · 1.6 KB
/
single-articles.php
File metadata and controls
79 lines (58 loc) · 1.6 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<?php
/*
Template Name: Full Width
Template Post Type: documents
*/
get_header(); ?>
<?php
while (have_posts()){
the_post();
?>
<div class="container">
<div class="row">
<div class="col-lg-12 mt-5">
<span class="img-fluid rounded image-contained mb-3"><?php the_post_thumbnail(); ?></span>
<div class="date_holder"><span class="day"><?php the_time('j'); ?></span><span class="month"><?php the_time('F'); ?></span></div>
<hr>
<h1 class="content-header mt-4"><?php the_title(); ?></h1>
<p class="lead">By <a href="#"><?php echo get_the_author(); ?></a></p>
<hr>
<?php
the_content();
};
?>
<hr class="specialHr">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-12 blurb-margin">
<?php dynamic_sidebar( 'blurb' ); ?>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-12">
<hr class="specialHr">
<?php comment_form(); ?>
<?php
$args = array(
'date_query' => array(
'after' => '26 weeks ago',
'before' => 'tomorrow',
'inclusive' => true,
$comments_args = array(
'label_submit' => __( 'Send', 'skeleton-starter' ),
'title_reply' => __( 'Write a Reply or Comment', 'skeleton-starter' ),
),
));
$comments = get_comments( $args );
foreach ( $comments as $comment ) {
}
?>
</div>
</div>
</div>
<?php get_footer(); ?>