Advertisement
wpexplorer

Staff Members Classy

Jan 24th, 2012
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.00 KB | None | 0 0
  1. OLD CODE ---------->
  2.  
  3. <div class="staff-member">
  4.             <?php if ( has_post_thumbnail() ) {  ?>
  5.                 <a href="<?php the_permalink(' ') ?>" title="<?php the_title(); ?>"><img src="<?php echo $featured_image[0]; ?>" alt="<?php the_title(); ?>" width="110" height="110" /></a>
  6.             <?php } ?>
  7.             <h2><a href="<?php the_permalink(' ') ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
  8.             <?php echo $staff_position; ?>
  9.         </div>
  10.         <!-- END staff-member -->
  11.  
  12.  
  13. NEW Code ---------->
  14.  
  15. <div class="staff-member">
  16. <a href="<?php the_permalink(' ') ?>" title="<?php the_title(); ?>">
  17.     <?php if ( has_post_thumbnail() ) {  ?>
  18.                 <img src="<?php echo $featured_image[0]; ?>" alt="<?php the_title(); ?>" width="110" height="110" /></a>
  19.             <?php } ?>
  20.             <h2><a href="<?php the_permalink(' ') ?>" title="<?php the_title(); ?>"><?php the_title(); ?></h2>
  21.             <?php echo $staff_position; ?>
  22. </a>
  23.         </div>
  24.         <!-- END staff-member -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement