HEX
Server: Apache/2
System: Linux sm.stlbg.net 3.10.0-962.3.2.lve1.5.87.el7.x86_64 #1 SMP Tue Jan 28 09:38:56 UTC 2025 x86_64
User: todorterziev (1053)
PHP: 7.4.33
Disabled: exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
Upload Files
File: /home/todorterziev/domains/todorterziev.com/public_html/wp-content/themes/prysm/comments.php
<?php
/**
 * The template for displaying Comments.
 *
 * The area of the page that contains comments and the comment form.
 *
 * @package WordPress
 * @subpackage Twenty_Thirteen
 * @since Twenty Thirteen 1.0
 */

/*
 * If the current post is protected by a password and the visitor has not yet
 * entered the password we will return early without loading the comments.
 */
if ( post_password_required() )
	return;
	
if ( ! comments_open() && !get_comments_number() ) return;
?>
<div class="pr-blog-comment headline">
	<?php if ( have_comments() ) : ?>
		<h3><?php comments_number( 'Comments (0)', 'Comment (1)', 'Comments (%)' ); ?></h3>
		<div class="pr-blog-comment-block-wrapper">
			<?php
				wp_list_comments( array(
					'style'       => 'div',
					'short_ping'  => true,
					'avatar_size' => 90,
					'callback'=>'prysm_list_comments',

				) );
			?>
		</div>
		 <?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) :?>

		<nav class="comments-pagination clearfix">
			<span class="comments-pagination-link-left">
			<?php next_comments_link( esc_html__( '&laquo; Newer Comments', 'prysm' ) ); ?>
			</span>
			<span class="comments-pagination-link-right">
			<?php previous_comments_link( esc_html__( 'Older Comments &raquo;', 'prysm' ) ); ?> 
			</span>
		</nav>
			<!-- .comment-navigation -->
		<?php endif; // Check for comment navigation ?>

		<?php if ( ! comments_open() && get_comments_number() ) : ?>
			<p class="no-comments text-center"><strong><?php esc_html_e( 'Comments are closed.' , 'prysm' ); ?></strong></p>
		<?php endif; ?>
	<?php endif; ?>

	<?php prysm_comment_form(); ?>
</div>