Advertisement
hmbashar

Custom Post Query

Dec 29th, 2015
332
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.92 KB | None | 0 0
  1.             <?php
  2.                 $testimonials = new WP_Query(array(                                    
  3.                         'post_type'     => 'tesimonials',
  4.                 ));
  5.             ?>
  6.             <?php if ($testimonials->have_posts()) : ?> <?php while ($testimonials->have_posts()) : $testimonials->the_post(); ?>
  7.             <?php
  8.                 $idd = get_the_ID();
  9.                 $tesimonial_img = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'tesimonila' );
  10.                 $clientname = get_post_meta($idd, 'client-name', true);
  11.                 $clientposition = get_post_meta($idd, 'client-position', true);
  12.                 $clientcompanyname = get_post_meta($idd, 'client-company-name', true);
  13.                 $clienttesidate = get_post_meta($idd, 'client-tesi-date', true);
  14.             ?>
  15.             <div class="single_testimonial_item floatleft">            
  16.                 <div class="single_test_img floatleft">
  17.                     <?php if ($tesimonial_img) : ?>                                    
  18.                         <a href="<?php the_permalink();?>"><img src="<?php echo $tesimonial_img[0];?>" alt="Tesimonial by <?php echo $clientname; ?> for Md Abul Bashar" /></a>
  19.                     <?php else : ?>
  20.                         <a href="<?php the_permalink();?>"><img src="<?php echo get_template_directory_uri();?>/img/default-img.jpg" alt="Tesimonial by <?php echo $clientname; ?> for Md Abul Bashar" /></a>
  21.                     <?php endif; ?>
  22.                 </div>             
  23.                 <div class="clients_name">
  24.                     <?php if ($clientname) : ?>
  25.                         <h2><?php echo $clientname;?> <span><?php echo $clientposition; ?></span></h2>
  26.                     <?php else : ?>
  27.                         <h2><?php the_title();?> <span><?php echo $clientposition; ?></span></h2>
  28.                     <?php endif;?>
  29.                 </div>
  30.                 <div class="clients_say">
  31.                     <?php the_content();?>
  32.                 </div>
  33.                 <div class="testimonial_date_time">                                        
  34.                         <p><?php if ($clienttesidate) : ?>Date: <?php echo $clienttesidate; ?> <?php endif;?> | <?php if ($clientcompanyname) : ?>Company Name: <?php echo $clientcompanyname; ?><?php endif; ?></p>
  35.                    
  36.                 </div>
  37.             </div>
  38.             <?php endwhile;?>                                  
  39.             <?php else : ?>
  40.                 <h2>Don't have Tesimonial</h2>
  41.             <?php endif;?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement