Advertisement
Guest User

me3.php

a guest
Jul 24th, 2014
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. <?php
  2. include ('/var/www/vhosts/cucirca.eu/html/wp-load.php');
  3.  
  4.  
  5. $args = array('cat' =>'$category_id' , 'post_status' => 'publish' , 'posts_per_page' => 10);
  6.  
  7. $posts = new WP_Query($args);
  8.  
  9. while ($posts->have_posts())
  10. {
  11. $posts->the_post();
  12. $id = get_the_ID();
  13. echo get_the_title().'<br/>';
  14. }
  15.  
  16.  
  17.  
  18. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement