-
Notifications
You must be signed in to change notification settings - Fork 48
/
single.php
50 lines (42 loc) · 1.17 KB
/
single.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
42
43
44
45
46
47
48
49
50
<?php
/**
* The Template for displaying all single posts
*
* Please see /external/bootstrap-utilities.php for info on BsWp::get_template_parts()
*
* @package WordPress
* @subpackage Bootstrap 5.3.2
* @autor Babobski
*/
$BsWp = new BsWp;
$BsWp->get_template_parts([
'parts/shared/html-header',
'parts/shared/header'
]);
?>
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<div class="content">
<h2>
<?php the_title(); ?>
</h2>
<time datetime="<?php the_time( 'Y-m-d' ); ?>" pubdate>
<?php the_date(); ?> <?php the_time(); ?>
</time>
<?php comments_popup_link(__('Leave a Comment', 'wp_babobski'), __('1 Comment', 'wp_babobski'), __('% Comments', 'wp_babobski')); ?>
<?php the_content(); ?>
<?php if ( get_the_author_meta( 'description' ) ) : ?>
<?php echo get_avatar( get_the_author_meta( 'user_email' ) ); ?>
<h3>
<?php echo __('About', 'wp_babobski'); ?> <?php echo get_the_author() ; ?>
</h3>
<?php the_author_meta( 'description' ); ?>
<?php endif; ?>
<?php comments_template( '', true ); ?>
</div>
<?php endwhile; ?>
<?php
$BsWp->get_template_parts([
'parts/shared/footer',
'parts/shared/html-footer'
]);
?>