-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsingle.php
More file actions
72 lines (50 loc) · 1.89 KB
/
single.php
File metadata and controls
72 lines (50 loc) · 1.89 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
<?php
// Exit if accessed directly
if ( !defined('ABSPATH')) exit;
/**
* Single Posts Template
*
*
* @file single.php
* @package AI
* @author Emil Uzelac, Ulrich Pogson
* @copyright 2003 - 2013 ThemeID
* @license license.txt
* @version Release: 1.0
* @filesource wp-content/themes/ai/single.php
* @link http://codex.wordpress.org/Theme_Development#Single_Post_.28single.php.29
* @since available since Release 1.0
*/
?>
<?php get_header(); ?>
<div id="content" class="grid col-700">
<?php get_template_part( 'loop-header' ); ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<h1 class="post-title"><?php the_title(); ?></h1>
<div class="post-entry">
<?php the_content(__('Read more ›', 'responsive')); ?>
<?php wp_link_pages(array('before' => '<div class="pagination">' . __('Pages:', 'responsive'), 'after' => '</div>')); ?>
</div><!-- end of .post-entry -->
<div class="navigation">
<div class="previous"><?php previous_post_link( '‹ %link' ); ?></div>
<div class="next"><?php next_post_link( '%link ›' ); ?></div>
</div><!-- end of .navigation -->
<div class="post-data">
<?php the_tags(__('Tagged with:', 'responsive') . ' ', ', ', '<br />'); ?>
<?php printf(__('Posted in %s', 'responsive'), get_the_category_list(', ')); ?>
</div><!-- end of .post-data -->
<div class="post-edit"><?php edit_post_link(__('Edit', 'responsive')); ?></div>
</div><!-- end of #post-<?php the_ID(); ?> -->
<?php comments_template( '', true ); ?>
<?php
endwhile;
get_template_part( 'loop-nav' );
else :
get_template_part( 'loop-no-posts' );
endif;
?>
</div><!-- end of #content -->
<?php get_sidebar('post'); ?>
<?php get_footer(); ?>