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/content-page.php

39 lines
816 B
PHP
Raw Normal View History

2014-12-10 11:36:38 +00:00
<?php
/**
* The template used for displaying page content in page.php
*
* @package understrap
*/
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?> class="content-page-item">
2014-12-10 11:36:38 +00:00
<header class="entry-header">
<?php the_title( '<h2 class="entry-title">', '</h2>' ); ?>
2014-12-10 11:36:38 +00:00
</header><!-- .entry-header -->
2016-01-08 09:37:16 +00:00
<?php echo get_the_post_thumbnail( $post, 'large' ); ?>
2014-12-11 16:56:13 +00:00
2014-12-10 11:36:38 +00:00
<div class="entry-content">
2014-12-10 11:36:38 +00:00
<?php the_content(); ?>
2014-12-10 11:36:38 +00:00
<?php
wp_link_pages( array(
'before' => '<div class="page-links">' . __( 'Pages:', 'understrap' ),
'after' => '</div>',
) );
?>
2014-12-10 11:36:38 +00:00
</div><!-- .entry-content -->
<footer class="entry-footer">
2014-12-10 11:36:38 +00:00
<?php edit_post_link( __( 'Edit', 'understrap' ), '<span class="edit-link">', '</span>' ); ?>
2014-12-10 11:36:38 +00:00
</footer><!-- .entry-footer -->
2014-12-10 11:36:38 +00:00
</article><!-- #post-## -->