Skip to content

Instantly share code, notes, and snippets.

@flayder
Created September 5, 2015 10:39
Show Gist options
  • Save flayder/0519c1bc9ce84b478ad7 to your computer and use it in GitHub Desktop.
Save flayder/0519c1bc9ce84b478ad7 to your computer and use it in GitHub Desktop.
last section
<section id="new-post" class="wow bounceInUp" data-wow-duration="2s" data-wow-delay="1s">
<div class="container">
<div class="title">Свежие публикации</div>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="new-post col-md-6" >
<div class="wrap">
<noindex>
<a rel="nofollow" href="<?php the_permalink(); ?>
">
<?php the_title(); ?></a>
</noindex>
<div class="images-front">
<?php the_post_thumbnail(); ?></div>
<?php the_excerpt(); ?></div>
</div>
<?php endwhile; ?>
<?php else: echo wpautop( 'Постов для вывода не найдено.' );
?>
<?php endif; ?></div>
</section>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment