30 lines
755 B
PHP
30 lines
755 B
PHP
<?php
|
|
/**
|
|
* The template used for displaying page content.
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Twenty_Sixteen
|
|
* @since Twenty Sixteen 1.0
|
|
*/
|
|
?>
|
|
|
|
<article id="wrapper" <?php post_class(); ?>>
|
|
<header style="background-image: url('<?php the_post_thumbnail_url(); ?>');">
|
|
<div>
|
|
<h1 id="post-title"><?php echo get_the_title(); ?></h1>
|
|
<?php if ( $subtitle = get_post_meta( get_the_ID(), 'Subtitle', true ) ) : ?>
|
|
<h2 id="post-subtitle"><?php echo $subtitle; ?></h2>
|
|
<?php endif; ?>
|
|
</div>
|
|
</header><!-- .entry-header -->
|
|
|
|
<main id="page-body" class="body">
|
|
<?php
|
|
if ( get_the_content() ) :
|
|
the_content();
|
|
else :
|
|
echo get_the_excerpt();
|
|
endif;
|
|
?>
|
|
</main><!-- .entry-content -->
|
|
</article><!-- #post-## -->
|