Changeset 43571 for trunk/tests/phpunit/tests/query/postStatus.php
- Timestamp:
- 08/17/2018 01:50:26 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/query/postStatus.php
r42343 r43571 198 198 set_current_screen( 'dashboard' ); 199 199 register_post_status( 200 'foo', array( 200 'foo', 201 array( 201 202 'protected' => true, 202 203 'show_in_admin_all_list' => true, … … 265 266 register_post_type( 'foo_pt' ); 266 267 register_post_status( 267 'foo_ps', array( 268 'foo_ps', 269 array( 268 270 'public' => false, 269 271 'protected' => true, … … 291 293 register_post_type( 'foo_pt' ); 292 294 register_post_status( 293 'foo_ps', array( 295 'foo_ps', 296 array( 294 297 'public' => false, 295 298 'protected' => true, … … 317 320 register_post_type( 'foo_pt' ); 318 321 register_post_status( 319 'foo_ps', array( 322 'foo_ps', 323 array( 320 324 'public' => false, 321 325 'private' => true, … … 343 347 register_post_type( 'foo_pt' ); 344 348 register_post_status( 345 'foo_ps', array( 349 'foo_ps', 350 array( 346 351 'public' => false, 347 352 'private' => true,
Note: See TracChangeset
for help on using the changeset viewer.