Advertisement
Guest User

query_ads

a guest
Mar 4th, 2014
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.43 KB | None | 0 0
  1. // WP_Query arguments
  2. $args = array (
  3.     'post_type'              => 'publicidad',
  4.     'post_status' => 'publish',
  5.     'post_type' => array('publicidad','any'),
  6.     'tax_query' => array(
  7.         array('taxonomy' => 'ubicaciones','field' => 'slug','terms' => 'ub-categoria'),
  8.         array('taxonomy' => 'publicidad_categories','field' => 'slug','terms' => $wp_query->get)),
  9.     'orderby' => 'rand'
  10. );
  11.  
  12. // The Query
  13. $query_ads = new WP_Query($args_ads);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement