Created
March 17, 2018 20:00
-
-
Save ivan-stepaniuk/310deb2a06b37ffa5a716916a5f96467 to your computer and use it in GitHub Desktop.
wordpress posts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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