Advertisement
hmbashar

Untitled

Feb 17th, 2016
300
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.22 KB | None | 0 0
  1.                             <?php                              
  2.                        
  3.                                 $category_news = new WP_Query(array(
  4.                                     'post_type'         => 'post',
  5.                                     'posts_per_page'    => 1,                              
  6.                                 ));
  7.                    
  8.                             ?>
  9.                            
  10.                             <?php if ($category_news->have_posts()) : ?> <?php while ($category_news->have_posts()) : ?><?php $category_news->the_post();?>
  11.                                 <?php
  12.                                     global $post;
  13.                                     $news_img = get_the_post_thumbnail( $post->ID, 'news-img');
  14.                                 ?>
  15.                                 <div class="featured_post fix">
  16.                                     <div class="featured_post_img">
  17.                                     <?php if ($news_img) : ?>
  18.                                         <a href="<?php the_permalink();?>" title="<?php the_title();?>"><?php the_post_thumbnail('news-img'); ?></a>
  19.                                     <?php else : ?>
  20.                                         <a href="<?php the_permalink();?>"><img src="<?php echo get_template_directory_uri(); ?>/img/newspaper.jpg" alt="" /></a>
  21.                                     <?php endif; ?>
  22.                                     </div>
  23.                                     <a href="<?php the_permalink();?>" title="<?php the_title();?>"><h2><?php the_title();?></h2></a>
  24.                                    
  25.                                     <p><?php echo excerpt(70); ?></p>
  26.                                     <a href="<?php the_permalink();?>" class="readmore" title="<?php the_title();?>"><?php echo $newsbar['button-text'];?></a>
  27.                                 </div>
  28.                             <?php endwhile; endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement