| Server IP : 64.225.102.56 / Your IP : 216.73.216.220 Web Server : Apache/2.4.68 (Ubuntu) mod_fcgid/2.3.9 OpenSSL/3.0.2 System : Linux smtp.zejefoy.com 5.15.0-185-generic #195-Ubuntu SMP Fri Jun 19 17:11:50 UTC 2026 x86_64 User : auto ( 1002) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,exec,system,passthru,shell_exec,proc_open,popen MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/auto/web/cifisoa.com/public_html/wp-content/themes/newsever/ |
Upload File : |
<?php
/**
* The template for displaying all single posts
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post
*
* @package Newsever
*/
get_header();
?>
<div class="af-container-block-wrapper clearfix">
<div id="primary" class="content-area ">
<main id="main" class="site-main ">
<?php
while (have_posts()) : the_post(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php if(!is_singular('post')): ?>
<header class="entry-header">
<?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
</header><!-- .entry-header -->
<?php endif; ?>
<?php
if (has_excerpt(get_the_ID())):
$single_posts_excerpt = get_the_excerpt(get_the_ID());
if (!empty($single_posts_excerpt)):
?>
<div class="post-excerpt">
<?php echo wp_kses_post(get_the_excerpt(get_the_ID())); ?>
</div>
<?php endif; ?>
<?php endif; ?>
<div class="entry-content-wrap read-single">
<?php
if(is_singular('post')){
$single_post_featured_image_view = newsever_get_option('single_post_featured_image_view');
if ($single_post_featured_image_view == 'within-content') {
do_action('newsever_action_single_featured_image');
}
}else{
newsever_post_thumbnail();
}
?>
<?php get_template_part('template-parts/content', get_post_type()); ?>
</div>
<div class="aft-comment-related-wrap">
<?php
// If comments are open or we have at least one comment, load up the comment template.
if (comments_open() || get_comments_number()) :
comments_template();
endif;
?>
<?php
$show_related_posts = esc_attr(newsever_get_option('single_show_related_posts'));
if ($show_related_posts):
if ('post' === get_post_type()) :
newsever_get_block('related');
endif;
endif;
?>
</div>
</article>
<?php
endwhile; // End of the loop.
?>
</main><!-- #main -->
</div><!-- #primary -->
<?php
get_sidebar(); ?>
</div>
<?php
get_footer();