This repository has been archived on 2020-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
understrap/loop-templates/content-single.php

49 lines
863 B
PHP
Raw Normal View History

2014-12-10 11:36:38 +00:00
<?php
/**
2016-11-21 18:12:07 +00:00
* Single post partial template.
*
2014-12-10 11:36:38 +00:00
* @package understrap
*/
2018-09-10 21:59:04 +00:00
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
2016-11-21 18:12:07 +00:00
?>
2018-09-10 21:59:04 +00:00
2016-11-01 16:13:23 +00:00
<article <?php post_class(); ?> id="post-<?php the_ID(); ?>">
2016-11-21 18:12:07 +00:00
<header class="entry-header">
<?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
2014-12-10 11:36:38 +00:00
2016-11-21 18:12:07 +00:00
<div class="entry-meta">
2016-11-21 18:12:07 +00:00
<?php understrap_posted_on(); ?>
2016-11-21 18:12:07 +00:00
</div><!-- .entry-meta -->
2016-11-21 18:12:07 +00:00
</header><!-- .entry-header -->
2014-12-10 11:36:38 +00:00
2016-11-21 18:12:07 +00:00
<?php echo get_the_post_thumbnail( $post->ID, 'large' ); ?>
2016-11-21 18:12:07 +00:00
<div class="entry-content">
2016-11-21 18:12:07 +00:00
<?php the_content(); ?>
2014-12-10 11:36:38 +00:00
2016-11-21 18:12:07 +00:00
<?php
wp_link_pages( array(
'before' => '<div class="page-links">' . __( 'Pages:', 'understrap' ),
'after' => '</div>',
) );
?>
2016-11-21 18:12:07 +00:00
</div><!-- .entry-content -->
2016-11-21 18:12:07 +00:00
<footer class="entry-footer">
2016-11-21 18:12:07 +00:00
<?php understrap_entry_footer(); ?>
2016-11-21 18:12:07 +00:00
</footer><!-- .entry-footer -->
2014-12-10 11:36:38 +00:00
</article><!-- #post-## -->