Advertisement
Guest User

Untitled

a guest
Jul 2nd, 2018
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 4.14 KB | None | 0 0
  1. $args = array(
  2.             'posts_per_page'    => -1,
  3.             'post_type'         => 'products',
  4.             'post_status'       => 'publish',
  5.             'tax_query'         => array(
  6.                 'relation'  => 'AND',
  7.                 array(
  8.                     'taxonomy'  => 'subjects',
  9.                     'field'     => 'name',
  10.                     'terms'     => $shortcode_atts['subject'],
  11.                 ),
  12.                 array(
  13.                     'taxonomy'  => 'plans',
  14.                     'field'     => 'name',
  15.                     'terms'     => $shortcode_atts['plan'],
  16.                 ),
  17.             ),
  18.         );
  19.         $products = get_posts( $args );
  20.        
  21.         echo '<pre dir="ltr">';var_dump($args);echo '</pre>';
  22.         echo '<pre dir="ltr">';var_dump($shortcode_atts);echo '</pre>';
  23.         echo '<pre dir="ltr">';var_dump($products);echo '</pre>';
  24.  
  25. string(550) "Array
  26. (
  27.    [posts_per_page] => -1
  28.    [post_type] => products
  29.    [post_status] => publish
  30.    [tax_query] => Array
  31.        (
  32.            [relation] => AND
  33.            [0] => Array
  34.                (
  35.                    [taxonomy] => subjects
  36.                    [field] => name
  37.                    [terms] => אינטרנט
  38.                )
  39.  
  40.            [1] => Array
  41.                (
  42.                    [taxonomy] => plans
  43.                    [field] => name
  44.                    [terms] => מסלול 10 גיגה
  45.                )
  46.  
  47.        )
  48.  
  49. )
  50. "
  51. string(80) "Array
  52. (
  53.    [subject] => אינטרנט
  54.    [plan] => מסלול 10 גיגה
  55. )
  56. "
  57. string(3269) "Array
  58. (
  59.    [0] => WP_Post Object
  60.        (
  61.            [ID] => 284
  62.            [post_author] => 1
  63.            [post_date] => 2018-07-02 14:41:46
  64.            [post_date_gmt] => 2018-07-02 11:41:46
  65.            [post_content] =>
  66.            [post_title] => מסלול 40 גיגה - וואלה מובייל
  67.            [post_excerpt] =>
  68.            [post_status] => publish
  69.            [comment_status] => open
  70.            [ping_status] => closed
  71.            [post_password] =>
  72.            [post_name] => someurl
  73.            [to_ping] =>
  74.            [pinged] =>
  75.            [post_modified] => 2018-07-02 14:42:58
  76.            [post_modified_gmt] => 2018-07-02 11:42:58
  77.            [post_content_filtered] =>
  78.            [post_parent] => 0
  79.            [guid] => someurl
  80.            [menu_order] => 0
  81.            [post_type] => products
  82.            [post_mime_type] =>
  83.            [comment_count] => 0
  84.            [filter] => raw
  85.        )
  86.  
  87.    [1] => WP_Post Object
  88.        (
  89.            [ID] => 216
  90.            [post_author] => 1
  91.            [post_date] => 2018-07-01 11:03:02
  92.            [post_date_gmt] => 2018-07-01 08:03:02
  93.            [post_content] =>
  94.            [post_title] => מסלול 10 גיגה - וואלה מובייל
  95.            [post_excerpt] =>
  96.            [post_status] => publish
  97.            [comment_status] => open
  98.            [ping_status] => closed
  99.            [post_password] =>
  100.            [post_name] => someurl
  101.            [to_ping] =>
  102.            [pinged] =>
  103.            [post_modified] => 2018-07-02 09:22:24
  104.            [post_modified_gmt] => 2018-07-02 06:22:24
  105.            [post_content_filtered] =>
  106.            [post_parent] => 0
  107.            [guid] => someurl
  108.            [menu_order] => 0
  109.            [post_type] => products
  110.            [post_mime_type] =>
  111.            [comment_count] => 0
  112.            [filter] => raw
  113.        )
  114.  
  115.    [2] => WP_Post Object
  116.        (
  117.            [ID] => 60
  118.            [post_author] => 1
  119.            [post_date] => 2018-06-25 11:34:43
  120.            [post_date_gmt] => 2018-06-25 08:34:43
  121.            [post_content] =>
  122.            [post_title] => מסלול 10 גיגה - פלאפון
  123.            [post_excerpt] =>
  124.            [post_status] => publish
  125.            [comment_status] => open
  126.            [ping_status] => closed
  127.            [post_password] =>
  128.            [post_name] => someurl
  129.            [to_ping] =>
  130.            [pinged] =>
  131.            [post_modified] => 2018-07-02 09:22:33
  132.            [post_modified_gmt] => 2018-07-02 06:22:33
  133.            [post_content_filtered] =>
  134.            [post_parent] => 0
  135.            [guid] => someurl
  136.            [menu_order] => 0
  137.            [post_type] => products
  138.            [post_mime_type] =>
  139.            [comment_count] => 0
  140.            [filter] => raw
  141.        )
  142.  
  143. )
  144. "
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement