Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2018
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.85 KB | None | 0 0
  1. ?php $the_query = new WP_Query( array( 'post_type' => 'cartoon', 'posts_per_page' => '1') ); ?>
  2.         <?php if($the_query->have_posts()) : while ($the_query->have_posts()) : $the_query->the_post(); ?>
  3.             <?php $sliderPhoto = get_field("cartoon"); ?>
  4.  
  5.             <?php if($sliderPhoto) : ?>
  6.                 <h3 style="margin-top:20px;" class="widget-title group"><span>La vignetta di Pietro Scuderi</span></h3>
  7.                 <!-- <div class="banner-sidebar"><img src="<?php echo $sliderPhoto["url"]; ?>"></div> -->
  8.                 <a title="clicca per entrare" target="_blank" href="<?php echo $sliderPhoto["url"]; ?>"><div class="cartoon-sidebar" style="margin-bottom:20px;"><img src="<?php echo $sliderPhoto["url"]; ?>"></div></a>
  9.             <?php endif; ?>
  10.         <?php endwhile; ?>
  11.         <?php endif; ?>
  12.     <?php wp_reset_postdata(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement