Advertisement
Guest User

Untitled

a guest
Aug 14th, 2011
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.40 KB | None | 0 0
  1. <div class="bar3">
  2. <div id="featured_articles">
  3. <div class="site_width">
  4. <ul>
  5. <?php
  6. $args = array( 'tag' => 'featured', 'posts_per_page' => '3' );
  7. $recent_posts = wp_get_recent_posts( $args );
  8. foreach( $recent_posts as $post ){
  9. ?>
  10. <li>
  11. <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>" rel="nofollow">
  12. <?php the_post_thumbnail('featured', array( 'title' => '' )); ?>
  13. </a>
  14. <label>
  15. <a href="<?php the_permalink(); ?>" rel="bookmark">
  16. <?php the_title(); ?>
  17. </a>
  18. </label>
  19. </li>
  20. <?php } //end the foreach loop ?>
  21. <?php wp_reset_query(); ?>
  22. </ul>
  23. </div>
  24. </div>
  25. </div>
  26.  
  27.  
  28.  
  29.  
  30. RESULT:
  31.  
  32.  
  33.  
  34. <div class="bar3">
  35. <div id="featured_articles">
  36. <div class="site_width">
  37. <ul>
  38. <li>
  39. <a href="" title="" rel="nofollow">
  40. </a>
  41. <label>
  42. <a href="" rel="bookmark">
  43. </a>
  44. </label>
  45. </li>
  46. <li>
  47. <a href="" title="" rel="nofollow">
  48. </a>
  49. <label>
  50. <a href="" rel="bookmark">
  51. </a>
  52. </label>
  53. </li>
  54. <li>
  55. <a href="" title="" rel="nofollow">
  56. </a>
  57. <label>
  58. <a href="" rel="bookmark">
  59. </a>
  60. </label>
  61. </li>
  62. </ul>
  63. </div>
  64. </div>
  65. </div>
  66.  
  67. (Query doesn't load any of the article info from database)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement