Guest User

Untitled

a guest
Oct 21st, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.67 KB | None | 0 0
  1.         <?php
  2.             global $wp_query;
  3.             $posts = get_posts(array('post_type' => 'fiftyoffifty'));
  4.             foreach($posts as $post) {
  5.                 setup_postdata($post); ?>
  6.                 <article class="grid8">
  7.                     <a href="<?php the_permalink() ?>">
  8.                         <?php if ( has_post_thumbnail() ) { ?>
  9.                             <?php the_post_thumbnail( 'medium-post-thumbnail' ); ?>
  10.                         <? } else { ?>
  11.                             <p>No Post Image!</p>
  12.                         <? } ?>
  13.                         <h3><?php the_title(); ?></h3>
  14.                         <?php $photonumber = get_post_meta(get_the_ID(), 'photo-number', true);?>
  15.                         <h4><span>Photo Number</span> <em><?= str_pad($photonumber, 2, "0", STR_PAD_LEFT); ?></em></h4>
  16.                     </a>
  17.                 </article>
  18.             <?php } ?>
Add Comment
Please, Sign In to add comment