Skip to content

Instantly share code, notes, and snippets.

@justintadlock
Created August 7, 2015 17:41
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 justintadlock/ea033b8e12ae94f600ed to your computer and use it in GitHub Desktop.
Save justintadlock/ea033b8e12ae94f600ed to your computer and use it in GitHub Desktop.
<?php
/**
* The template for displaying home page.
*
* This is the template that displays all pages by default.
* Please note that this is the WordPress construct of pages
* and that other 'pages' on your WordPress site will use a
* different template.
*
* @package SKT Bakery
*/
get_header();
?>
<?php if ( is_front_page() && ! is_home() ) : ?>
<section class="latest-blog">
<div class="site-aligner">
<div class="section-title"><?php _e('Latest News','bakery'); ?></div>
<div>
<?php $k = 0; ?>
<?php global $wp_query; ?>
<?php while( $wp_query->have_posts() ) : $wp_query->the_post(); ?>
<?php $k++; ?>
<div class="one_fourth <?php if($k%4==0){?>last_column<?php } ?>">
<p><a title="<?php the_title(); ?>" href="<?php the_permalink(); ?>">
<?php if( has_post_thumbnail() ) { ?>
<?php the_post_thumbnail(); ?>
<?php } else { ?>
<img src="<?php echo get_template_directory_uri(); ?>/images/img_404.png" />
<?php } ?>
</a>
</p>
<div class="recent-post-title"><a title="<?php the_title(); ?>" href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
</div>
<?php echo skt_bakery_content(20); ?>
<div class="clear"></div>
<a href="<?php the_permalink(); ?>"><div class="morebtn"><?php _e('Read More','bakery'); ?></div></a>
</div><?php if($k%4==0){?><div class="clear"></div><?php } ?>
<?php endwhile; ?>
</div>
</div><div class="clear"></div>
</section>
<?php else : ?>
<div id="content">
<div class="site-aligner">
<section class="site-main content-left" id="sitemain">
<div class="blog-post">
<?php
if ( have_posts() ) :
// Start the Loop.
while ( have_posts() ) : the_post();
/*
* Include the post format-specific template for the content. If you want to
* use this in a child theme, then include a file called called content-___.php
* (where ___ is the post format) and that will be used instead.
*/
get_template_part( 'content', get_post_format() );
endwhile;
// Previous/next post navigation.
skt_bakery_pagination();
else :
// If no content, include the "No posts found" template.
get_template_part( 'no-results', 'index' );
endif;
?>
</div><!-- blog-post -->
</section>
<div class="sidebar_right">
<?php get_sidebar();?>
</div><!-- sidebar_right -->
<div class="clear"></div>
</div><!-- site-aligner -->
</div><!-- content -->
<?php endif; ?>
<?php get_footer(); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment