HEX
Server: Apache
System: Linux www3.pit.tblive.com 5.14.0-687.38.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Aug 12 17:19:12 EDT 2026 x86_64
User: awaldron (1020)
PHP: 8.1.34
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/awaldron/_domains/waldroninteractive.com/wp-content/themes/whoiam/archive.php
<?php
/**
 * archive.php
 * @package WordPress
 * @subpackage Who I Am
 * @since Who I Am 1.9
 */
?>

<?php get_header(); ?>


<?php
   get_template_part('menu_section'); ?>


<section id="blog" class="block-section">

<!-- ***************************************
Start of BreadCrumbs
*************************************** -->

        <div class=" shape-bottom">
          <div class="bg-secondary block-title">
            <div class="container"> 
                                   
               <h2 class="text-uppercase color-dark text-bold no-margin">
			         <?php if (is_category()) { ?>
                      <?php _e('Category Archive for:', 'whoiam') ?> <?php single_cat_title(); ?>
    
                      <?php } elseif( is_tag() ) { ?>
                          <?php _e('Posts Tagged:', 'whoiam') ?><?php single_tag_title(); ?>
          
                      <?php } elseif (is_day()) { ?>
                          <?php _e('Archive for:', 'whoiam') ?> <?php the_time('F jS, Y'); ?>
          
                      <?php } elseif (is_month()) { ?>
                          <?php _e('Archive for:', 'whoiam') ?> <?php the_time('F, Y'); ?>
          
                      <?php } elseif (is_year()) { ?>
                          <?php _e('Archive for:', 'whoiam') ?> <?php the_time('Y,'); ?>
          
                      <?php } elseif (is_author()) { ?>
                          <?php _e('Author Archive:', 'whoiam') ?>
          
                      <?php } elseif (isset($_GET['paged']) && !empty($_GET['paged'])) { ?>
                          <?php _e('Blog Archives:', 'whoiam') ?>
                      <?php } ?>
                </h2>
 
                                            
            </div>
          </div>
        </div>           


<!-- ***************************************
End  of BreadCrumbs
*************************************** -->

        <div class="block-page" >
          <div class="container-medium">
            <div class="row">
              <div class="col-md-9">
                  <ul class="list-unstyled list-blog">
                   <?php if (have_posts()) : while (have_posts()) : the_post();  

                        get_template_part( 'post-format/content', get_post_format() ); 

                    endwhile; 

                     get_template_part( 'post-format/pagination' ); 

                     else : ?>

                    <h2><?php _e('No Posts Found', 'whoiam') ?></h2>

                    <?php

                    endif; 

                    wp_reset_query();


                    ?> 

		
		           </ul>
                 </div>
             <?php get_sidebar(); ?>
             </div>
         </div>
      </div>
</section>
<?php get_footer(); ?>