Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.44 KB | None | 0 0
  1. <?php $args = array(
  2.             'post_type' => 'page',
  3.             'post__in' => array( 2, 5, 12 )
  4.         );
  5.     query_posts( $args ); ?>
  6.     <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
  7.     <li>
  8.         <img src="<?php echo get_post_meta($post->ID, "serv", true);?>" class="articletitlepic" alt="" align="left" />
  9.         <h3 class="myclass typeface-js"><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h3>
  10.         <?php the_excerpt(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement