Guest User

Untitled

a guest
Oct 15th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. <ul id="biographies">
  2.  
  3. <?php
  4. $args = array('post_type=page&sort=post_date&order=desc&post_parent=93&numberposts' => 8);
  5. $lastposts = get_posts( $args );
  6. foreach($lastposts as $post) : setup_postdata($post); ?>
  7.  
  8. <li class="short-bio <?php post_class(); ?>">
  9. <div class="author-thumb"><a href="<?php echo get_permalink(); ?>" rel="author"><?php echo get_the_post_thumbnail(); ?></a></div>
  10. <?php the_title( '<h3 class="name tk-atrament-web"><a href="' . get_permalink() . '" title="' . the_title_attribute( 'echo=0' ) . '" rel="bookmark">', '</a></h3>' ); ?>
  11. <p class="position"><em><?php echo get_post_meta($post->ID, "position", true); ?></em></p>
  12. <p class="phone"><strong>T</strong> <?php echo get_post_meta($post->ID, "telephone", true); ?></p>
  13. <p class="email"><strong>E</strong> <?php echo get_post_meta($post->ID, "email", true); ?></p>
  14. <p class="read"><em><a href="<?php echo get_permalink(); ?>" rel="author">Read full bio</a></em></p>
  15. </li>
  16.  
  17. <?php endforeach; ?>
  18. <?php wp_reset_query(); ?>
  19.  
  20. </ul>
Add Comment
Please, Sign In to add comment