HEX
Server: Apache
System: Linux 4801F1B1.ptr.provps.com 6.16.7-1.el9.elrepo.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Sep 11 13:27:45 EDT 2025 x86_64
User: nassaugo (1001)
PHP: 8.1.33
Disabled: NONE
Upload Files
File: /home/nassaugo/www/wp-content/themes/drone-media/comments.php
<?php
/**
 * The template to display the Comments.
 *
 * The area of the page that contains both current comments
 * and the comment form. 
 */

/*
 * 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;



// Callback for output single comment layout
if (!function_exists('drone_media_output_single_comment')) {
	function drone_media_output_single_comment( $comment, $args, $depth ) {
		switch ( $comment->comment_type ) {
			case 'pingback' :
				?>
				<li class="trackback"><?php esc_html_e( 'Trackback:', 'drone-media' ); ?> <?php comment_author_link(); ?><?php edit_comment_link( esc_html__( 'Edit', 'drone-media' ), '<span class="edit-link">', '<span>' ); ?>
				<?php
				break;
			case 'trackback' :
				?>
				<li class="pingback"><?php esc_html_e( 'Pingback:', 'drone-media' ); ?> <?php comment_author_link(); ?><?php edit_comment_link( esc_html__( 'Edit', 'drone-media' ), '<span class="edit-link">', '<span>' ); ?>
				<?php
				break;
			default :
				$author_id = $comment->user_id;
				$author_link = !empty($author_id) ? get_author_posts_url( $author_id ) : '';
				$mult = drone_media_get_retina_multiplier();
				?>
				<li id="comment-<?php comment_ID(); ?>" <?php comment_class('comment_item'); ?>>
					<div id="comment_body-<?php comment_ID(); ?>" class="comment_body">
						<div class="comment_author_avatar"><?php echo get_avatar( $comment, 90*$mult ); ?></div>
						<div class="comment_content">
							<div class="comment_info">
								<h6 class="comment_author"><?php
									echo (!empty($author_link) ? '<a href="'.esc_url($author_link).'">' : '') 
											. esc_html(get_comment_author())
											. (!empty($author_link) ? '</a>' : '');
								?></h6>
								<div class="comment_posted">
									<span class="comment_posted_label"><?php esc_html_e('Posted', 'drone-media'); ?></span>
									<span class="comment_date"><?php
										echo esc_html(drone_media_get_date(get_comment_date('U')));
									?></span>
									<span class="comment_time"><?php
										echo esc_html(get_comment_date(get_option('time_format')));
									?></span>
									<?php if ( $comment->comment_approved == 1 ) { ?>
									<span class="comment_counters"><?php drone_media_show_comment_counters(); ?></span>
									<?php } ?>
								</div>
							</div>
							<div class="comment_text_wrap">
								<?php if ( $comment->comment_approved == 0 ) { ?>
								<div class="comment_not_approved"><?php esc_html_e( 'Your comment is awaiting moderation.', 'drone-media' ); ?></div>
								<?php } ?>
								<div class="comment_text"><?php comment_text(); ?></div>
							</div>
							<?php
							if ($depth < $args['max_depth']) {
								?><div class="reply comment_reply"><?php 
									comment_reply_link( array_merge( $args, array(
																				'add_below' => 'comment_body',
																				'depth' => $depth, 
																				'max_depth' => $args['max_depth']
																				)
																	)
														);
								?></div><?php
							}
							?>
						</div>
					</div>
				<?php
				break;
		}
	}
}


// Output comments list
if ( have_comments() || comments_open() ) {
	?>
	<section class="comments_wrap">
	<?php
	if ( have_comments() ) {
	?>
		<div id="comments" class="comments_list_wrap">
			<h3 class="section_title comments_list_title"><?php $drone_media_post_comments = get_comments_number(); echo esc_html($drone_media_post_comments); ?>
                <?php echo esc_html(1==$drone_media_post_comments ? esc_html__('Comment', 'drone-media') : esc_html__('Comments', 'drone-media')) ; ?>
            </h3>
			<ul class="comments_list">
				<?php
				wp_list_comments( array('callback'=>'drone_media_output_single_comment') );
				?>
			</ul><!-- .comments_list -->
			<?php if ( !comments_open() && get_comments_number()!=0 && post_type_supports( get_post_type(), 'comments' ) ) { ?>
				<p class="comments_closed"><?php esc_html_e( 'Comments are closed.', 'drone-media' ); ?></p>
			<?php }	?>
			<div class="comments_pagination"><?php paginate_comments_links(); ?></div>
		</div><!-- .comments_list_wrap -->
	<?php 
	}

	if ( comments_open() ) {
		?>
		<div class="comments_form_wrap">
			<div class="comments_form">
				<?php
				$drone_media_form_style = esc_attr(drone_media_get_theme_option('input_hover'));
				if (empty($drone_media_form_style) || drone_media_is_inherit($drone_media_form_style)) $drone_media_form_style = 'default';
				$drone_media_commenter = wp_get_current_commenter();
				$drone_media_req = get_option( 'require_name_email' );
				$drone_media_comments_args = apply_filters( 'drone_media_filter_comment_form_args', array(
						// class of the 'form' tag
						'class_form' => 'comment-form ' . ($drone_media_form_style != 'default' ? 'sc_input_hover_' . esc_attr($drone_media_form_style) : ''),
						// change the id of send button 
						'id_submit' => 'send_comment',
						// change the title of send button 
						'label_submit' => esc_html__('Leave a comment', 'drone-media'),
						// change the title of the reply section
						'title_reply' => esc_html__('Leave a comment', 'drone-media'),
						'title_reply_before' => '<h3 class="section_title comments_form_title">',
						'title_reply_after' => '</h3>',
						// remove "Logged in as"
						'logged_in_as' => '',
						// remove text before textarea
						'comment_notes_before' => '',
						// remove text after textarea
						'comment_notes_after' => '',
						'fields' => array(
							'author' => drone_media_single_comments_field(array(
												'form_style' => $drone_media_form_style,
												'field_type' => 'text',
												'field_req' => $drone_media_req,
												'field_icon' => 'icon-user',
												'field_value' => isset($drone_media_commenter['comment_author']) ? $drone_media_commenter['comment_author'] : '',
												'field_name' => 'author',
												'field_title' => esc_html__('Name', 'drone-media'),
												'field_placeholder' => esc_attr__( 'Your Name', 'drone-media' )
											)),
							'email' => drone_media_single_comments_field(array(
												'form_style' => $drone_media_form_style,
												'field_type' => 'text',
												'field_req' => $drone_media_req,
												'field_icon' => 'icon-mail',
												'field_value' => isset($drone_media_commenter['comment_author_email']) ? $drone_media_commenter['comment_author_email'] : '',
												'field_name' => 'email',
												'field_title' => esc_html__('E-mail', 'drone-media'),
												'field_placeholder' => esc_attr__( 'Your E-mail', 'drone-media' )
											))
						),
						// redefine your own textarea (the comment body)
						'comment_field' => drone_media_single_comments_field(array(
												'form_style' => $drone_media_form_style,
												'field_type' => 'textarea',
												'field_req' => true,
												'field_icon' => 'icon-feather',
												'field_value' => '',
												'field_name' => 'comment',
												'field_title' => esc_html__('Comment', 'drone-media'),
												'field_placeholder' => esc_attr__( 'Your comment', 'drone-media' )
											)),
				));
			
				comment_form($drone_media_comments_args);
				?>
			</div>
		</div><!-- /.comments_form_wrap -->
		<?php 
	}
	?>
	</section><!-- /.comments_wrap -->
<?php 
}
?>