?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/wdp/wp-content/themes/wagency/



?? Go up: /home/webdevt/www/wdp/wp-content/themes

?? Viewing: tag.php

<?php
/**
 * The template for displaying Tag pages
 *
 * Used to display archive-type pages for posts in a tag.
 *
 * @link https://codex.wordpress.org/Template_Hierarchy
 */

get_header(); ?>

	<div class="<?php do_action( 'atiframebuilder_blog_number_of_columns' ); ?>">

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


			<?php

			/* The loop */ ?>
			<?php while ( have_posts() ) : the_post(); ?>
				<?php get_template_part( 'content' ); ?>
			<?php endwhile; ?>

			<?php
            do_action( 'atiframebuilder_layout_archive_nav' );
			?>

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

	</div><!-- #primary -->

<?php get_footer(); ?>


??

??