Advertisement
Guest User

Untitled

a guest
Jan 19th, 2017
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. [diversecity section="sounds-flavors" ids=""]
  2.  
  3. $qs = new WP_Query(
  4. array(
  5. 'posts_per_page' => 3,
  6. 'category_name' => 'sounds-flavors'
  7. )
  8. );
  9.  
  10. [diversecity section="sounds-flavors" ids="12345,12678"]
  11.  
  12. $qs = new WP_Query(
  13. array(
  14. 'posts_per_page' => 3,
  15. 'category_name' => 'sounds-flavors',
  16. 'post__in' => array(12345,12678)
  17. )
  18. );
  19.  
  20. <article id="12345">{First ID Specified}</article>
  21. <article id="12678">{Second ID Specified}</article>
  22. <article id="12980">{Most Recent Post from the Sounds & Flavors category}</article>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement