HEX
Server: nginx/1.18.0
System: Linux vcwordpress 5.15.0-174-generic #184-Ubuntu SMP Fri Mar 13 18:41:50 UTC 2026 x86_64
User: root (0)
PHP: 7.4.33
Disabled: 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_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/bharti-foundation.stgviitor.com/wp-content/themes/lifeline/comments.php
<?php
if ( post_password_required() ) {
	return;
}
$count = wp_count_comments( get_the_ID() );
?>
<div id="comments">
	<?php if ( lifeline_get( $count, 'total_comments' ) > 0 ) : ?>
		<div class="comments-threads mt-50">
			<?php if ( have_comments() ) : ?>
				<h3 class="mb-0 font-weight-semibold text-dark"><?php echo esc_html( lifeline_get( $count, 'total_comments' ) ); ?> <span class="text-theme"><?php echo ( lifeline_get( $count, 'total_comments' ) > 1 ) ? esc_html__( 'Comments Found', 'lifeline' ) : esc_html__( 'Comment Found', 'lifeline' ); ?></span></h3>
				<ul class="comments-list mb-0 list-unstyled w-100">
					<?php
					wp_list_comments(
						array(
							'type'     => 'comment',
							'callback' => 'lifeline_comments_list',
							'format'   => 'null',
						)
					);
					?>
				</ul>
				<?php
				// Are there comments to navigate through?
				if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) :
					?>
					<nav class="navigation comment-navigation" role="navigation">
						<h1 class="screen-reader-text section-heading"><?php esc_html_e( 'Comment navigation', 'lifeline' ); ?></h1>
						<div class="nav-previous"><?php previous_comments_link( '&larr; ' . esc_html__( 'Older Comments', 'lifeline' ) ); ?></div>
						<div class="nav-next"><?php next_comments_link( esc_html__( 'Newer Comments', 'lifeline' ) . ' &rarr;' ); ?></div>
					</nav><!-- .comment-navigation -->
					<?php
				endif; // Check for comment navigation
				?>
				<?php if ( ! comments_open() && get_comments_number() ) : ?>
					<p class="no-comments"><?php esc_html_e( 'Comments are closed.', 'lifeline' ); ?></p>
				<?php endif; ?>
				<?php
			endif; // have_comments()
			?>
		</div>
		<?php
	endif;
	if ( comments_open() ) :
		lifeline_comment_form();
	endif;
	?>
</div>