Skip to content

Instantly share code, notes, and snippets.

@sareiodata
Created April 18, 2016 08:20
Show Gist options
  • Save sareiodata/ee8ebec8acb8337272c4f927faf5644e to your computer and use it in GitHub Desktop.
Save sareiodata/ee8ebec8acb8337272c4f927faf5644e to your computer and use it in GitHub Desktop.
<?php
/**
* The template used for displaying private page content
*
* @package WordPress
* @subpackage Twenty_Sixteen
* @since Twenty Sixteen 1.0
*/
$private_page_class = 'class="type-page ' . join( ' ', get_post_class( $class, $post_id ) ) . '"';
?>
<article id="post-<?php the_ID(); ?>" <?php echo $private_page_class ; ?>>
<header class="entry-header">
<?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
</header><!-- .entry-header -->
<?php twentysixteen_post_thumbnail(); ?>
<div class="entry-content">
<?php
the_content();
wp_link_pages( array(
'before' => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentysixteen' ) . '</span>',
'after' => '</div>',
'link_before' => '<span>',
'link_after' => '</span>',
'pagelink' => '<span class="screen-reader-text">' . __( 'Page', 'twentysixteen' ) . ' </span>%',
'separator' => '<span class="screen-reader-text">, </span>',
) );
?>
</div><!-- .entry-content -->
<?php
edit_post_link(
sprintf(
/* translators: %s: Name of current post */
__( 'Edit<span class="screen-reader-text"> "%s"</span>', 'twentysixteen' ),
get_the_title()
),
'<footer class="entry-footer"><span class="edit-link">',
'</span></footer><!-- .entry-footer -->'
);
?>
</article><!-- #post-## -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment