Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ivan-stepaniuk/310deb2a06b37ffa5a716916a5f96467 to your computer and use it in GitHub Desktop.
Save ivan-stepaniuk/310deb2a06b37ffa5a716916a5f96467 to your computer and use it in GitHub Desktop.
wordpress posts
<?php if (have_posts()): while (have_posts()) : the_post();
<?php if ( has_post_thumbnail()) : // Check if thumbnail exists
$image = get_the_post_thumbnail_url();
endif; ?>
<article id="post-<?php the_ID(); ?>" class="project_item" style="background-image: url(<?php echo $image; ?>)">
<a href="<?php the_permalink(); ?>">
<div class="project_item_info_wrapper">
<div class="project_item_info">
<div class="title"><?php echo get_field('title');?></div>
<div class="description"><?php echo get_field('subtitle');?></div>
</div>
<div class="project_item_mask"></div>
</div>
</a>
</article>
<?php endwhile; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment