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/archive.php
<?php
/*
 * archive, category
 * The page for listing category items or tags or by date.
 */
get_header(); ?>

<div class="row">
    <section id="content" class="c8" role="main">
        <header>

            <?php if (!empty( get_theme_mod('larryslist_newtitle_setting') ) ) : ?>
            <h2 class="alt-title">
            <?php echo esc_attr( get_theme_mod('larryslist_newtitle_setting') ); ?></h2>
            <?php endif; ?>

        </header>
            <h3 class="new-title">

                <?php if( is_post_type_archive( 'listing'  ) ) {
                      echo get_the_term_list( get_the_ID(), 'tsw-taxonomy', '', ', ', '' ); } ?>
                <?php if( is_post_type_archive( 'post'  ) ) {
                      echo the_category(); } ?>

            </h3>
            <br>

            <?php if ( have_posts() ) : ?>
            <?php while ( have_posts() ) : the_post(); ?>

            <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>

                <?php get_template_part( 'content', 'excerpt' ); ?>

            </div>

                <?php endwhile; ?>

                    <?php the_posts_pagination(); ?>

                    <?php else : ?>

	                <div class="entry">

		            <?php get_template_part( 'content', 'none' ); ?>

                        </div>

                <?php endif; ?>

    </section><!-- ends sect c8 -->
        <div class="c4 end">

            <?php get_sidebar(); ?>

        </div>
</div><!-- ends row page -->

    <?php get_footer(); ?>