| Server IP : 14.225.204.176 / Your IP : 216.73.216.252 Web Server : nginx/1.24.0 System : Linux nodejs-ybgk 6.8.0-40-generic #40-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 5 10:34:03 UTC 2024 x86_64 User : root ( 0) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/php/ezine/wp-content/themes/ezine/ |
Upload File : |
<?php
$ezine_is_pw_req = post_password_required();
get_header();
ezine_breadcrumb();
if ( ! $ezine_is_pw_req ) {
ezine_featured_img();
}
?>
<div class="<?php echo esc_attr( ezine_single_class() ); ?>">
<div class="<?php echo esc_attr( ezine_row_class() ); ?>">
<main id="main" class="<?php echo esc_attr( ezine_main_class() ); ?>">
<?php if ( have_posts() ): while( have_posts() ): the_post(); ?>
<article id="post-<?php echo intval( get_the_ID() ); ?>" <?php post_class(); ?>>
<?php ezine_featured_img(); ?>
<?php if ( ezine_get_option( 'show_content' ) == 'true' ): ?>
<section class="post-content">
<div class="post-excerpt"><strong><?php the_excerpt();?></strong></div>
<?php
the_content();
if ( ! $ezine_is_pw_req ) {
wp_link_pages( array(
'before' => '<div class="pagination"><span class="page-numbers title">' . esc_html__( 'Pages:', 'ezine' ) . '</span>',
'after' => '</div>',
'pagelink' => '%'
) );
}
?>
</section><!-- .post-content -->
<?php endif; ?>
<?php if ( ! $ezine_is_pw_req ): ?>
<footer class="post-footer">
<?php if ( ezine_get_option( 'show_tags' ) == 'true' && $ezine_post_tags = get_the_tags() ): ?>
<div class="post-tags">
<?php the_tags( '<strong class="title">'. esc_html__( 'Tags:', 'ezine' ) .'</strong> ' ); ?>
</div><!-- .post-tags -->
<?php endif; ?>
<?php
ezine_post_voting();
ezine_social_sharing();
//ezine_author_box();
ezine_pagination( 'nextprev' );
//ezine_post_ad();
//comments_template();
?>
</footer><!-- .post-footer -->
<?php endif; ?>
</article>
<?php endwhile; endif; ?>
</main>
<?php get_sidebar(); ?>
</div><!-- .row -->
<?php ezine_related_posts(); ?>
</div><!-- .container -->
<?php
get_footer();