MOON
Server: Apache
System: Linux server1.primemusicproductions.com 4.18.0-477.27.2.el8_8.x86_64 #1 SMP Fri Sep 29 08:21:01 EDT 2023 x86_64
User: primrwxj (1001)
PHP: 8.3.3
Disabled: NONE
Upload Files
File: /home/primrwxj/articlebinder.com/wp-content/themes/larryslist/comments.php
<?php
/*
 * comments.php
 * larryslist
 */
    if ( post_password_required() )
        return;
?>

    <section id="comments">

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

        <h2 class="comments-title"><?php get_the_title() ?></h2>
                <ol class="commentlist">

                <?php wp_list_comments( array(
                    'reply_text' => __( 'Reply to this thread', 'larryslist' ))
                ); ?>

                </ol><!-- ends commentlist -->
                <div class="navigation">
                  <p><?php previous_comments_link() ?><span><?php next_comments_link() ?></span></p>
                </div><br>

	<?php else : // then this if comments are closed ?>

	        <small><?php esc_html_e( '- No Comments on this Post - ', 'larryslist' ); ?></small>

	    <?php endif; ?>

        <div><br>

        <?php
        comment_form();
        ?>

        </div>
    </section><!-- #comments .comments-area -->