Advertisement
bdjobair

Untitled

Jun 11th, 2015
500
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.85 KB | None | 0 0
  1. //single-portfolio.php
  2. <div class="container single_page_background">
  3.                         <?php
  4.                         global $post;
  5.                         $args = array( 'posts_per_page' => 1, 'post_type'=> 'portfolio');
  6.                         $myposts = get_posts( $args );
  7.                         foreach( $myposts as $post ) : setup_postdata($post); ?>               
  8.                         <div class="row ">
  9.                             <div class="col-md-12">
  10.                                 <div class="single_page_title">
  11.                                     <h1><?php the_title();?></h1>
  12.                                 </div>
  13.                             </div>                 
  14.                         </div>
  15.                         <div class="row ">
  16.                             <div class="col-md-8 col-sm-8 col-xs-12">
  17.                                 <div class="single_page_img ">
  18.                                     <?php the_excerpt();?>
  19.                                 </div>
  20.                             </div>
  21.                             <div class="col-md-4 col-sm-4 col-xs-12">
  22.                                 <div class="single_page_description">
  23.                                     <?php the_content();?>
  24.                                 </div>
  25.                             </div>
  26.                         </div>
  27.                         <?php endforeach; ?>
  28.             </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement