Skip to content

Instantly share code, notes, and snippets.

Created December 12, 2017 05:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/502584b5a394693bec71a1fc8c50b030 to your computer and use it in GitHub Desktop.
Save anonymous/502584b5a394693bec71a1fc8c50b030 to your computer and use it in GitHub Desktop.
<?php
/**
* Template for blog listing.
*
* @package Easy_Commerce
*/
get_header(); ?>
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<?php if ( have_posts() ) : ?>
<?php if ( is_home() && ! is_front_page() ) : ?>
<header>
<h1 class="page-title screen-reader-text"><?php single_post_title(); ?></h1>
<h1 class="page-title "><?php single_post_title(); ?></h1>
</header>
<?php endif; ?>
<?php /* Start the Loop */ ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'template-parts/content' ); ?>
<?php endwhile; ?>
<?php
/**
* Hook - easy_commerce_action_posts_navigation.
*
* @hooked: easy_commerce_custom_posts_navigation - 10
*/
do_action( 'easy_commerce_action_posts_navigation' ); ?>
<?php else : ?>
<?php get_template_part( 'template-parts/content', 'none' ); ?>
<?php endif; ?>
</main><!-- #main -->
</div><!-- #primary -->
<?php
/**
* Hook - easy_commerce_action_sidebar.
*
* @hooked: easy_commerce_add_sidebar - 10
*/
do_action( 'easy_commerce_action_sidebar' );
?>
<?php get_footer(); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment