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

42 lines
939 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.
2016-11-21 18:12:07 +00:00
*
2016-10-23 15:54:40 +00:00
* @package understrap
*/
2016-11-21 18:12:07 +00:00
?>
2016-10-23 15:54:40 +00:00
<?php global $post ?>
2016-11-21 18:12:07 +00:00
<article <?php post_class(); ?> id="<?php echo esc_html( strtolower( $post->post_title ) ); ?>">
2016-10-23 15:54:40 +00:00
2016-11-21 18:12:07 +00:00
<header class="entry-header">
2016-10-23 15:54:40 +00:00
2016-11-21 18:12:07 +00:00
<?php the_title( '<h2 class="entry-title">', '</h2>' ); ?>
2016-10-23 15:54:40 +00:00
2016-11-21 18:12:07 +00:00
</header><!-- .entry-header -->
2016-10-23 15:54:40 +00:00
2016-11-21 18:12:07 +00:00
<?php echo get_the_post_thumbnail( $post->ID, 'large' ); ?>
2016-10-25 16:38:36 +00:00
2016-11-21 18:12:07 +00:00
<div class="entry-content">
2016-10-23 15:54:40 +00:00
2016-11-21 18:12:07 +00:00
<?php the_content(); ?>
2016-10-23 15:54:40 +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-10-23 15:54:40 +00:00
2016-11-21 18:12:07 +00:00
</div><!-- .entry-content -->
2016-10-23 15:54:40 +00:00
2016-11-21 18:12:07 +00:00
<footer class="entry-footer">
2016-10-23 15:54:40 +00:00
2016-11-21 18:12:07 +00:00
<?php edit_post_link( __( 'Edit', 'understrap' ), '<span class="edit-link">', '</span>' ); ?>
2016-10-23 15:54:40 +00:00
2016-11-21 18:12:07 +00:00
</footer><!-- .entry-footer -->
2016-10-23 15:54:40 +00:00
</article><!-- #post-## -->