jared-shepherd
12/9/2018 - 5:28 PM

WP - Theme - Shoptimizer - No heading page template

Shoptimizer theme default no heading page template.

<?php
/**
 * The template for displaying full width pages without a heading.
 *
 * Template Name: Full width (no heading)
 *
 * @package shoptimizer
 */

get_header();
?>

	<div id="primary" class="content-area">
		<main id="main" class="site-main">

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

				do_action( 'shoptimizer_page_before' );

				get_template_part( 'content', 'page' );

				/**
				 * Functions hooked in to shoptimizer_page_after action
				 *
				 * @hooked shoptimizer_display_comments - 10
				 */
				do_action( 'shoptimizer_page_after' );

			endwhile; // End of the loop. ?>

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

<?php
get_footer();