Changeset 53152 for trunk/tests/phpunit/tests/blocks/wpBlock.php
- Timestamp:
- 04/12/2022 09:24:51 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/blocks/wpBlock.php
r52010 r53152 444 444 'orderby' => 'title', 445 445 'post__not_in' => array( 1, 2 ), 446 'category__in' => array( 56 ), 447 'tag__in' => array( 3, 11, 10 ), 446 'tax_query' => array( 447 array( 448 'taxonomy' => 'category', 449 'terms' => array( 56 ), 450 'include_children' => false, 451 ), 452 array( 453 'taxonomy' => 'post_tag', 454 'terms' => array( 3, 11, 10 ), 455 'include_children' => false, 456 ), 457 ), 448 458 ) 449 459 );
Note: See TracChangeset
for help on using the changeset viewer.