Skip to content

Instantly share code, notes, and snippets.

@Bjornhall
Created March 11, 2016 14:11
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 Bjornhall/51643484a6beed95f137 to your computer and use it in GitHub Desktop.
Save Bjornhall/51643484a6beed95f137 to your computer and use it in GitHub Desktop.
<section class="front-page boxes clearfix">
<!-- <div class="container clr"> -->
<div>
<?php
$args = array(
'post_type' => 'portfolio',
'posts_per_page'=> 5,
'order' => 'ASC'
);
$featured = new WP_Query($args);
?>
<?php $priority_box = 0; ?>
<?php if( $featured->have_posts() ) : while( $featured->have_posts() ) : $featured->the_post(); ?>
<?php $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'forsidu_box' );?>
<?php $overlay_color = get_field('litur'); ?>
<div class="box single-box box-<?php echo $priority_box; ?>" style="background:url('<?php echo $image[0]; ?>');background-size:cover;">
<h1><?php the_title(); ?></h1>
<div class="the_link">
<a href="<?php the_permalink(); ?>">Sjá nánar</a>
</div>
<div class="overlay <?php echo $overlay_color; ?>"></div>
</div>
<?php $priority_box++; ?>
<?php endwhile; endif; ?>
<a href="<?php the_permalink(); ?>"class="box single-box box-5">
<h1>Sjá allar þjónustur</h1>
<div class="overlay green allar-thjonustur"></div>
</a>
</div>
</section>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment