Make WordPress Core

Ticket #16850: test-16850.php

File test-16850.php, 320 bytes (added by scribu, 13 years ago)
Line 
1<?php
2
3add_action( 'init', function() {
4        $q = new WP_Query( array( 'post_parent' => array( '', 1, 2, 'billy tables' ) ) );
5
6        var_dump($q->request);
7
8        $q = new WP_Query( array( 'post_parent' => 'billy tables' ) );
9
10        var_dump($q->request);
11
12        $q = new WP_Query( array( 'post_parent' => 1 ) );
13
14        var_dump($q->request);
15} );