HEX
Server: LiteSpeed
System: Linux da4 4.18.0-553.74.1.lve.el8.x86_64 #1 SMP Tue Sep 9 14:25:24 UTC 2025 x86_64
User: wwwprimemarka (2294)
PHP: 5.6.40
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/wwwprimemarka/public_html/wp-content/themes/Zephyr/framework/functions/comments.php
<?php

class Walker_Comments_US extends Walker_Comment {

	function start_lvl( &$output, $depth = 0, $args = array() ) {
		$GLOBALS['comment_depth'] = $depth + 1;

		$output .= '<div class="w-comments-childlist">' . "\n";

	}

	function end_lvl( &$output, $depth = 0, $args = array() ) {
		$GLOBALS['comment_depth'] = $depth + 1;

		$output .= '</div>' . "\n";
	}
}

if ( ! function_exists( 'us_comment_start' ) ) {
	function us_comment_start( $comment, $args, $depth ) {
		$GLOBALS['comment'] = $comment;
		$author_link_start = $author_link_end = '';
		$author_url = get_comment_author_url();
		if ( $author_url != '' ) {
			$author_link_start = '<a href="' . $author_url . '" target="_blank" rel="nofollow">';
			$author_link_end = '</a>';
		}
		?>

		<div class="w-comments-item" id="comment-<?php comment_ID() ?>">
			<div class="w-comments-item-meta">
				<div class="w-comments-item-icon">
					<?php echo get_avatar( $comment, $size = '50' ); ?>
				</div>
				<div class="w-comments-item-author"><?php echo $author_link_start . get_comment_author() . $author_link_end; ?></div>
				<a class="w-comments-item-date" href="#comment-<?php comment_ID() ?>"><?php echo get_comment_date() . ' ' . get_comment_time() ?></a>
			</div>
			<div class="w-comments-item-text"><?php comment_text() ?></div>
			<?php comment_reply_link(
				array_merge(
					$args, array(
					'depth' => $depth,
					'max_depth' => $args['max_depth'],
					'before' => '<div class="w-comments-item-answer">',
					'after' => '</div>',
				)
				)
			) ?>
		</div>


		<?php
	}
}

if ( ! function_exists( 'us_comment_end' ) ) {
	function us_comment_end( $comment, $args, $depth ) {
		return;
	}
}