nerd4hire
12/16/2015 - 6:29 AM

Blog Posts

Blog Posts

<?php query_posts(array(
				'post_type' => 'post',
				'offset' => 1,
				'showposts' => 6
				));
				if ( have_posts() ) : while ( have_posts() ) : the_post(); 
			?>
			<div class="large-6 columns blog">
				<h4><a href="<?php the_permalink() ?>"  title="Permanent Link to <?php the_title_attribute(); ?>"><?php 
				if ( has_post_thumbnail() ) { // check if the post has a Post Thumbnail assigned to it.
					the_post_thumbnail( 'full', array( 'class' => 'alignleft featured-image' ) );
				} 
				?>
				<?php the_title(); ?></a>
					</h4>
				
				<p><?php echo get_the_excerpt();?> </p>
			</div>	
			<?php endwhile; endif; wp_reset_query(); ?>