-
Notifications
You must be signed in to change notification settings - Fork 1
/
single.php
executable file
·31 lines (31 loc) · 1.11 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
<?php
/**
* Шаблон отдельной записи (single.php)
* @package WordPress
* @subpackage your-clean-template-3
*/
get_header(); ?>
<section>
<div class="container">
<div class="row">
<div class="col-12">
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<h1><?php the_title(); ?></h1>
<div class="meta">
<p>Опубликовано: <?php the_time(get_option('date_format')." в ".get_option('time_format')); ?></p>
<p>Автор: <?php the_author_posts_link(); ?></p>
<p>Категории: <?php the_category(',') ?></p>
<?php the_tags('<p>Тэги: ', ',', '</p>'); ?>
</div>
<?php the_content(); ?>
</article>
<?php endwhile; ?>
<?php previous_post_link('%link', '<- Предыдущий пост: %title', TRUE); ?>
<?php next_post_link('%link', 'Следующий пост: %title ->', TRUE); ?>
<?php if (comments_open() || get_comments_number()) comments_template('', true); ?>
</div>
</div>
</div>
</section>
<?php get_footer(); ?>