'; if ( $theme_options['pmthemes_display_fullw'] == false ) : echo '
'; else: echo '
'; endif; // Display Archive Title According to Type echo '

'; if( is_category() ) { printf(__('Category Archives: %s', 'pmthemes'), '' . single_cat_title( '', false ) . ''); } elseif ( is_tag() ) { printf(__('Tag Archives: %s', 'pmthemes'), '' . single_cat_title( '', false ) . ''); } elseif ( is_date() ) { printf( __( 'Monthly Archives: %s', 'pmthemes' ), '' . get_the_date( _x( 'F Y', 'date format of monthly archives', 'pmthemes' ) ) . '' ); } else { _e( 'Archives fda', 'pmthemes' ); } echo '

'; do_action('pmthemes_before_archive_content'); if ( $theme_options['pmth_grid_col_opt'] == 'pmth-grid-coln' ) { $gridopt = $theme_options['pmth_grid_column']; } else { $gridopt = $theme_options['pmth_grid_width']; } echo '
'; // Display Content if (have_posts()) : while (have_posts()) : the_post(); get_template_part( 'template-parts/content', $theme_options['posts_length'] ); endwhile; endif; echo '
'; pmthemes_display_pagination(); do_action('pmthemes_after_archive_content'); echo '
'; // Display Sidebar if ( $theme_options['pmthemes_display_fullw'] == false ) : get_sidebar(); endif; echo ''; get_footer();