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-verticalpage.php

41 lines
924 B
PHP
Raw Normal View History

2016-10-23 15:54:40 +00:00
<?php
/**
* The template used for displaying page content in a vertical layout
* The template modifies Article's ID by using post's slug to lower case as anchor point.
* @package understrap
*/
?>
<?php global $post ?>
2016-10-25 16:38:36 +00:00
<article id="<?php echo strtolower( $post->post_title ); ?>" <?php post_class(); ?>>
2016-10-23 15:54:40 +00:00
<header class="entry-header">
<?php the_title( '<h2 class="entry-title">', '</h2>' ); ?>
</header><!-- .entry-header -->
2016-10-25 16:38:36 +00:00
<?php echo get_the_post_thumbnail( $post->ID, 'large' ); ?>
2016-10-23 15:54:40 +00:00
<div class="entry-content">
<?php the_content(); ?>
<?php
2016-10-25 16:38:36 +00:00
wp_link_pages( array(
'before' => '<div class="page-links">' . __( 'Pages:', 'understrap' ),
'after' => '</div>',
) );
2016-10-23 15:54:40 +00:00
?>
</div><!-- .entry-content -->
<footer class="entry-footer">
<?php edit_post_link( __( 'Edit', 'understrap' ), '<span class="edit-link">', '</span>' ); ?>
</footer><!-- .entry-footer -->
</article><!-- #post-## -->