(root)/content-single.php @ 27 - Rev 26
Rev 7 |
Go to most recent revision |
Blame |
Compare with Previous |
Last modification |
View Log
| RSS feed
<?php
/*
* The template for displaying content in the single.php template
*/
?>
<article id="post-
<?php the_ID
(); ?>"
<?php post_class
(); ?>>
<header class="entry-header">
<h1 id="post-title">
<?php the_title
(); ?></h1>
<span class="entry-meta-top">
<?php
// Show the author's name if the blog has more than one author
if (sdt_count_authors
() > 1) {
the_author
(); echo ' • ';
}
?><?php the_date
() ?> <?php the_time
() ?> <?php edit_post_link
(__
('Edit', 'sdt'), ' • ', ''); ?></span>
</header>
<div class="entry-content">
<?php the_content
(__
('Continue reading ⇾', 'sdt')); ?>
<?php wp_link_pages
(array( 'before' => '<div class="page-link">'.__
('Pages:', 'sdt'), 'after' => '</div>')); ?>
</div><!-- .entry-content -->
<footer class="entry-meta-bottom">
<?php printf(_n
("category: ", "categories: ", count(get_the_category
()), 'sdt')); the_category
(', '); ?><br />
<?php printf(_n
("tag: ", "tags: ", count(get_the_tags
()), 'sdt')); the_tags
('', ', ', ''); ?><br />
<a href="
<?php the_permalink
(); ?>" title="
<?php printf(esc_attr__
('Permalink to %s', 'sdt'), the_title_attribute
('echo=0')); ?>" rel="bookmark">
<?php _e
('permalink', 'sdt'); ?></a>
<?php if (comments_open
()) { ?> • <a href="#respond" title="
<?php _e
('Write a comment', 'sdt'); ?>">
<?php _e
('reply', 'sdt'); ?></a>
<?php } ?>
<?php if (pings_open
()) { ?> • <a href="
<?php trackback_url
() ?>" title="
<?php _e
('Trackback URL', 'sdt'); ?>">
<?php _e
('trackback', 'sdt'); ?></a>
<?php } ?>
•
<?php post_comments_feed_link
(__
('comments RSS', 'sdt')) ?>
</footer>
</article>