Created
October 28, 2018 13:22
-
-
Save Rayhanuc/08c9024a34ae66fdb846dc0f1cffab76 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://developer.wordpress.org/themes/basics/template-hierarchy/ | |
* | |
* @package Industry_Rayhan | |
*/ | |
?> | |
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> | |
<header class="entry-header"> | |
<?php | |
if ( is_singular() ) : | |
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 | |
industry_rayhan_posted_on(); | |
industry_rayhan_posted_by(); | |
?> | |
</div><!-- .entry-meta --> | |
<?php endif; ?> | |
</header><!-- .entry-header --> | |
<?php industry_rayhan_post_thumbnail(); ?> | |
<div class="entry-content"> | |
<?php | |
if (is_single()) { | |
the_content( sprintf( | |
wp_kses( | |
/* translators: %s: Name of current post. Only visible to screen readers */ | |
__( 'Continue reading<span class="screen-reader-text"> "%s"</span>', 'industry-rayhan' ), | |
array( | |
'span' => array( | |
'class' => array(), | |
), | |
) | |
), | |
get_the_title() | |
) ); | |
}else { | |
the_excerpt(); | |
echo('<p class="read-more-wrap"><a href="'. esc_url( get_permalink() ) .'" class="boxed-btn">Read More</a></p>'); | |
} | |
wp_link_pages( array( | |
'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'industry-rayhan' ), | |
'after' => '</div>', | |
) ); | |
?> | |
</div><!-- .entry-content --> | |
<footer class="entry-footer"> | |
<?php industry_rayhan_entry_footer(); ?> | |
</footer><!-- .entry-footer --> | |
</article><!-- #post-<?php the_ID(); ?> --> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment