Created
October 17, 2016 17:10
-
-
Save ckschmieder/1910e7eb8e0ab88baa907d45a6b5c532 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Template part for displaying posts. | |
* | |
* @link https://codex.wordpress.org/Template_Hierarchy | |
* | |
* @package AAFP | |
*/ | |
?> | |
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> | |
<header class="entry-header"> | |
<?php | |
if ( is_single() ) : | |
the_title( '<h1 class="entry-title">', '</h1>' ); | |
else : | |
the_title( '<h2 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h2>' ); | |
endif; | |
if ( 'post' === get_post_type() ) : ?> | |
<div class="entry-meta"> | |
<?php aafp_posted_on(); ?> | |
</div><!-- .entry-meta --> | |
<?php | |
endif; ?> | |
</header><!-- .entry-header --> | |
<div class="entry-content"> | |
<?php | |
the_content(); | |
wp_link_pages( array( | |
'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'aafp' ), | |
'after' => '</div>', | |
) ); | |
?> | |
</div><!-- .entry-content --> | |
<footer class="entry-footer"> | |
<?php aafp_entry_footer(); ?> | |
</footer><!-- .entry-footer --> | |
</article><!-- #post-## --> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment