Guest User

Untitled

a guest
Jun 19th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. <?php if (is_home()) { ?>
  2.  
  3. <div class="text">
  4. <h2 class="blogimage"> Recent Blog item</h2>
  5. <ul class="commonlist">
  6.  
  7.  
  8. <?php $my_query = new WP_Query('cat=8&showposts=2');
  9. while ($my_query->have_posts()) : $my_query->the_post();$do_not_duplicate = $post->ID; ?>
  10. <?php
  11.  
  12. $newscontent = get_the_content($more_link_text, $stripteaser, $more_file);
  13. $newscontent = apply_filters(’the_content’, $newscontent);
  14. $newscontent = str_replace(’’, ‘’, $newscontent);
  15. ?>
  16. <li><h5><a href="<?php the_permalink(); ?>"><?php the_title();?></a></h5>
  17. <p><?php echo substr(strip_tags($newscontent), 0, 103); ?></p>
  18. <div class="date"><a href="#"><img src="<?php echo bloginfo('template_url'); ?>/images/comments.png" alt="" /> <?php comments_popup_link('Comments 0', ' Comments 1', '% Comments'); ?></a> | <a href="<?php the_permalink(); ?>">readmore</a></div></li>
  19. <?php endwhile; ?>
  20.  
  21. </ul>
  22. </div>
  23. <?php } ?>
Add Comment
Please, Sign In to add comment