| 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/template-parts/ |
Upload File : |
<?php
/**
* Template part for displaying posts
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package Newsever
*/
?>
<?php if (is_singular()) : ?>
<div class="entry-content read-details">
<?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>', 'newsever'),
array(
'span' => array(
'class' => array(),
),
)
),
get_the_title()
)); ?>
<?PHP if (is_single()): ?>
<div class="post-item-metadata entry-meta">
<?php newsever_post_item_tag(); ?>
</div>
<?php endif; ?>
<?php
// the_post_navigation(array(
// 'prev_text' => __('<span class="em-post-navigation">Previous</span> %title', 'newsever'),
// 'next_text' => __('<span class="em-post-navigation">Next</span> %title', 'newsever'),
// //'in_same_term' => true,
// 'screen_reader_text' => __('Continue Reading', 'newsever'),
// ));
the_post_navigation( array(
'prev_text' => sprintf(
/* translators: %s: Title of the previous post. */
'<span class="em-post-navigation">%s</span> %s',
esc_html__( 'Previous', 'newsever' ),
'%title'
),
'next_text' => sprintf(
/* translators: %s: Title of the next post. */
'<span class="em-post-navigation">%s</span> %s',
esc_html__( 'Next', 'newsever' ),
'%title'
),
/* translators: Hidden heading for the post navigation section. */
'screen_reader_text' => esc_html__( 'Post navigation', 'newsever' ),
) );
?>
<?php wp_link_pages(array(
'before' => '<div class="page-links">' . esc_html__('Pages:', 'newsever'),
'after' => '</div>',
));
?>
</div><!-- .entry-content -->
<?php else:
do_action('newsever_action_archive_layout');
endif;