<?php
$lastposts = get_posts( array(
'posts_per_page' => 5 ,
'post_type' => 'projects'
) );
if ( $lastposts ) {
foreach ( $lastposts as $post ) :
setup_postdata( $post ); ?>
<div class="portfolio-panel" style="background: url(' <?php the_post_thumbnail_url(); ?>')">
<div class="panel-clickthroughs">
<a class="company-logo-link">
<?$logo_image = get_field('logo_image');?>
<img class="company-logo" src="<? echo $logo_image['url'];?>" alt="">
</a>
<a class="button-link" href="<?php the_permalink(); ?>">
<button>View</button>
</a>
</div>
</div>
<?php
endforeach;
wp_reset_postdata();
}
?>
$lastposts = get_posts( array(
'posts_per_page' => 5 ,
'post_type' => 'projects'
) );
if ( $lastposts ) {
foreach ( $lastposts as $post ) :
setup_postdata( $post ); ?>
<div class="portfolio-panel" style="background: url(' <?php the_post_thumbnail_url(); ?>')">
<div class="panel-clickthroughs">
<a class="company-logo-link">
<?$logo_image = get_field('logo_image');?>
<img class="company-logo" src="<? echo $logo_image['url'];?>" alt="">
</a>
<a class="button-link" href="<?php the_permalink(); ?>">
<button>View</button>
</a>
</div>
</div>
<?php
endforeach;
wp_reset_postdata();
}
?>
Comments
Post a Comment