Advertisement
Guest User

Untitled

a guest
Apr 11th, 2013
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 3.96 KB | None | 0 0
  1. WP_Query Object
  2. (
  3.     [query_vars] => Array
  4.         (
  5.             [post_status] => Array
  6.                 (
  7.                     [0] => publish
  8.                     [1] => future
  9.                 )
  10.  
  11.             [post_type] => kalender
  12.             [order] => ASC
  13.             [name] => slug-of-the-post
  14.             [error] =>
  15.             [m] => 0
  16.             [p] => 0
  17.             [post_parent] =>
  18.             [subpost] =>
  19.             [subpost_id] =>
  20.             [attachment] =>
  21.             [attachment_id] => 0
  22.             [static] =>
  23.             [pagename] =>
  24.             [page_id] => 0
  25.             [second] =>
  26.             [minute] =>
  27.             [hour] =>
  28.             [day] => 0
  29.             [monthnum] => 0
  30.             [year] => 0
  31.             [w] => 0
  32.             [category_name] =>
  33.             [tag] =>
  34.             [cat] =>
  35.             [tag_id] =>
  36.             [author_name] =>
  37.             [feed] =>
  38.             [tb] =>
  39.             [paged] => 0
  40.             [comments_popup] =>
  41.             [meta_key] =>
  42.             [meta_value] =>
  43.             [preview] =>
  44.             [s] =>
  45.             [sentence] =>
  46.             [fields] =>
  47.             [menu_order] =>
  48.             [category__in] => Array
  49.                 (
  50.                 )
  51.  
  52.             [category__not_in] => Array
  53.                 (
  54.                 )
  55.  
  56.             [category__and] => Array
  57.                 (
  58.                 )
  59.  
  60.             [post__in] => Array
  61.                 (
  62.                 )
  63.  
  64.             [post__not_in] => Array
  65.                 (
  66.                 )
  67.  
  68.             [tag__in] => Array
  69.                 (
  70.                 )
  71.  
  72.             [tag__not_in] => Array
  73.                 (
  74.                 )
  75.  
  76.             [tag__and] => Array
  77.                 (
  78.                 )
  79.  
  80.             [tag_slug__in] => Array
  81.                 (
  82.                 )
  83.  
  84.             [tag_slug__and] => Array
  85.                 (
  86.                 )
  87.  
  88.             [ignore_sticky_posts] =>
  89.             [suppress_filters] =>
  90.             [cache_results] => 1
  91.             [update_post_term_cache] => 1
  92.             [update_post_meta_cache] => 1
  93.             [posts_per_page] => 10
  94.             [nopaging] =>
  95.             [comments_per_page] => 50
  96.             [no_found_rows] =>
  97.         )
  98.  
  99.     [tax_query] =>
  100.     [meta_query] => WP_Meta_Query Object
  101.         (
  102.             [queries] => Array
  103.                 (
  104.                 )
  105.  
  106.             [relation] =>
  107.         )
  108.  
  109.     [post_count] => 0
  110.     [current_post] => -1
  111.     [in_the_loop] =>
  112.     [comment_count] => 0
  113.     [current_comment] => -1
  114.     [found_posts] => 1
  115.     [max_num_pages] => 0
  116.     [max_num_comment_pages] => 0
  117.     [is_single] => 1
  118.     [is_preview] =>
  119.     [is_page] =>
  120.     [is_archive] =>
  121.     [is_date] =>
  122.     [is_year] =>
  123.     [is_month] =>
  124.     [is_day] =>
  125.     [is_time] =>
  126.     [is_author] =>
  127.     [is_category] =>
  128.     [is_tag] =>
  129.     [is_tax] =>
  130.     [is_search] =>
  131.     [is_feed] =>
  132.     [is_comment_feed] =>
  133.     [is_trackback] =>
  134.     [is_home] =>
  135.     [is_404] =>
  136.     [is_comments_popup] =>
  137.     [is_paged] =>
  138.     [is_admin] =>
  139.     [is_attachment] =>
  140.     [is_singular] => 1
  141.     [is_robots] =>
  142.     [is_posts_page] =>
  143.     [is_post_type_archive] =>
  144.     [query_vars_hash] => 3ff98c32860fc8289d07267a07e11db0
  145.     [query_vars_changed] =>
  146.     [thumbnails_cached] =>
  147.     [query] => Array
  148.         (
  149.             [post_status] => Array
  150.                 (
  151.                     [0] => publish
  152.                     [1] => future
  153.                 )
  154.  
  155.             [post_type] => kalender
  156.             [order] => ASC
  157.             [name] => slug-of-the-post
  158.         )
  159.  
  160.     [request] => SELECT   wp_posts.* FROM wp_posts  WHERE 1=1  AND wp_posts.post_name = 'slug-of-the-post' AND wp_posts.post_type = 'kalender' AND (wp_posts.post_status = 'publish' OR wp_posts.post_status = 'future') AND post_date > '2013-04-11'  ORDER BY wp_posts.post_date ASC
  161.     [posts] => Array
  162.         (
  163.         )
  164.  
  165. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement