diff --git a/src/wp-includes/post.php b/src/wp-includes/post.php
index ced0275db4..f410a29b5b 100644
a
|
b
|
function get_post_types( $args = array(), $output = 'names', $operator = 'and' ) |
1422 | 1422 | * ?{query_var_string}={post_slug} will be valid. |
1423 | 1423 | * @type bool $can_export Whether to allow this post type to be exported. Default true. |
1424 | 1424 | * @type bool $delete_with_user Whether to delete posts of this type when deleting a user. |
1425 | | * - If true, posts of this type belonging to the user will be moved |
1426 | | * to Trash when the user is deleted. |
1427 | | * - If false, posts of this type belonging to the user will *not* |
1428 | | * be trashed or deleted. |
1429 | | * - If not set (the default), posts are trashed if post type supports |
1430 | | * the 'author' feature. Otherwise posts are not trashed or deleted. |
| 1425 | * If true, posts of this type belonging to the user will be moved |
| 1426 | * to Trash when the user is deleted. |
| 1427 | * If false, posts of this type belonging to the user will *not* |
| 1428 | * be trashed or deleted. |
| 1429 | * If not set (the default), posts are trashed if post type supports |
| 1430 | * the 'author' feature. Otherwise posts are not trashed or deleted. |
1431 | 1431 | * Default null. |
1432 | 1432 | * @type array $template Array of blocks to use as the default initial state for an editor |
1433 | 1433 | * session. Each item should be an array containing block name and |
1434 | 1434 | * optional attributes. Default empty array. |
1435 | 1435 | * @type string|false $template_lock Whether the block template should be locked if $template is set. |
1436 | | * - If set to 'all', the user is unable to insert new blocks, |
1437 | | * move existing blocks and delete blocks. |
1438 | | * - If set to 'insert', the user is able to move existing blocks |
1439 | | * but is unable to insert new blocks and delete blocks. |
| 1436 | * If set to 'all', the user is unable to insert new blocks, |
| 1437 | * move existing blocks and delete blocks. |
| 1438 | * If set to 'insert', the user is able to move existing blocks |
| 1439 | * but is unable to insert new blocks and delete blocks. |
1440 | 1440 | * Default false. |
1441 | 1441 | * @type bool $_builtin FOR INTERNAL USE ONLY! True if this post type is a native or |
1442 | 1442 | * "built-in" post_type. Default false. |