File: /home/mirz4654/www/wp-content/themes/wise-blog/template-parts/content-single.php
<?php
/**
* Template part for displaying posts
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package Wise Blog
*/
$single_date = get_theme_mod( 'wise_blog_enable_single_date', true );
$single_author = get_theme_mod( 'wise_blog_enable_single_author', true );
$single_category = get_theme_mod( 'wise_blog_enable_single_category', true );
$single_tag = get_theme_mod( 'wise_blog_enable_single_tag', true );
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div class="single-page">
<div class="page-header-content">
<?php
if ( $single_category === true ) {
?>
<div class="entry-cat">
<?php wise_blog_categories_list(); ?>
</div>
<?php } ?>
<?php if ( is_singular() ) : ?>
<header class="entry-header">
<?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
</header><!-- .entry-header -->
<?php
if ( 'post' === get_post_type() ) :
setup_postdata( get_post() );
?>
<ul class="entry-meta">
<?php
if ( $single_author === true ) {
?>
<li class="post-author"><?php wise_blog_posted_by(); ?></li>
<?php
}
if ( $single_date === true ) {
?>
<li class="post-date"><?php wise_blog_posted_on(); ?></li>
<?php
}
?>
</ul><!-- .entry-meta -->
<?php
endif;
?>
<?php endif; ?>
<?php
if ( has_excerpt() ) {
the_excerpt();
}
?>
</div>
<?php wise_blog_post_thumbnail(); ?>
<div class="entry-content">
<?php
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>', 'wise-blog' ),
array(
'span' => array(
'class' => array(),
),
)
),
wp_kses_post( get_the_title() )
)
);
wp_link_pages(
array(
'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'wise-blog' ),
'after' => '</div>',
)
);
?>
</div><!-- .entry-content -->
<footer class="entry-footer">
<?php
if ( $single_tag === true ) {
wise_blog_entry_footer();
}
?>
</footer><!-- .entry-footer -->
<div class="single-content-wrap">
</div>
</article><!-- #post-<?php the_ID(); ?> -->