HEX
Server: LiteSpeed
System: Linux spg20.cloudpowerdns.com 5.14.0-611.35.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 25 03:46:09 EST 2026 x86_64
User: carrerup (3153)
PHP: 8.1.33
Disabled: NONE
Upload Files
File: /home/carrerup/.trash/techland/comments.php
<?php
/**
 * Comments.php
 * The template for displaying Comments.
 * @package WordPress
 * @subpackage Techland
 * @since Techland 1.0
 */
?>

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

<div id="nt-comments" class="comments-container">
	<!-- Comments -->
	<?php if ( have_comments() ) : ?>

		<h3 class="nt-inner-title nt-comments-title mb-6">
			<?php
				printf( _n( 'One thought on &ldquo;%2$s&rdquo;', '%1$s thoughts on &ldquo;%2$s&rdquo;', get_comments_number(), 'techland' ),
				number_format_i18n( get_comments_number() ), '<span>' . get_the_title() . '</span>' );
			?>
		</h3>

		<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through ?>
			<nav role="navigation" id="comment-nav-above" class="site-navigation comment-navigation">
				<h4 class="assistive-text"><?php esc_html_e( 'Comment navigation', 'techland' ); ?></h4>
				<div class="nav-previous"><?php previous_comments_link( esc_html__( '&larr; Older Comments', 'techland' ) ); ?></div>
				<div class="nav-next"><?php next_comments_link( esc_html__( 'Newer Comments &rarr;', 'techland' ) ); ?></div>
			</nav><!--End #comment-nav-before -->
		<?php endif; // check for comment navigation ?>

		<ol class="nt-commentlist comments-list pb-3 pb-lg-6">
			<?php wp_list_comments('callback=techland_custom_commentlist'); 	?>
			<!-- .commentlist -->
		</ol><!-- .commentlist -->

		<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through ?>
			<nav role="navigation" id="comment-nav-below" class="site-navigation comment-navigation">
				<h4 class="assistive-text"><?php esc_html_e( 'Comment navigation', 'techland' ); ?></h4>
				<div class="nav-previous"><?php previous_comments_link( esc_html__( '&larr; Older Comments', 'techland' ) ); ?></div>
				<div class="nav-next"><?php next_comments_link( esc_html__( 'Newer Comments &rarr;', 'techland' ) ); ?></div>
			</nav>
		<?php endif; // check for comment navigation ?>

	<?php endif; // have comments ?>

	<?php if ( ! comments_open() && '0' != get_comments_number() && post_type_supports( get_post_type(), 'comments' ) ) : 	?>
		<p class="nocomments text-center"><?php esc_html_e( 'Comments are closed.', 'techland' ); ?></p>
	<?php endif; ?>

	<?php if ( comments_open() ) : ?>

		<?php if ( get_option('comment_registration') && !is_user_logged_in() ) : ?>
			<p class="alert">
				<?php esc_html_e( 'You must be ', 'techland' ); ?><a href="<?php echo wp_login_url( get_permalink() ); ?>"><?php esc_html_e( 'logged in', 'techland' ); ?></a> <?php esc_html_e( 'to post a comment.', 'techland' ); ?>
			</p>
		<?php else : ?>
			<div class="pt-3 pt-md-6 pt-lg-12">
				<?php comment_form(); ?>
			</div>
		<?php endif; // If registration required and not logged in ?>

	<?php endif; // If you delete this the sky will fall on your head ?>

</div>