26 | | * @param array $args Filters defining what should be included in the export. |
| 26 | * @param array $args { |
| 27 | * Optional. Default is to export all content except those with status 'auto-draft'. |
| 28 | * |
| 29 | * @type string $content If set, only content of this post type will be exported; |
| 30 | * everything otherwise (via the 'all' default). |
| 31 | * @type string $author If set, only content by this author will be exported; default is |
| 32 | * all authors. |
| 33 | * @type string $category If set and if $content is 'post' or 'all', only content assigned |
| 34 | * to this category will be exported; default is all categories. |
| 35 | * @type string $start_date If set and if $content is 'post' or 'all', this will be the start |
| 36 | * date; earliest date otherwise. Format is 'Y-m-d'. |
| 37 | * @type string $end_date If set and if $content is 'post' or 'all', this will be the end date; |
| 38 | * latest date otherwise. Format is 'Y-m-d' |
| 39 | * @type string $status If set and if $content is 'post' or 'page', only content of this status |
| 40 | * will be exported. Default is all status' except 'auto-draft'. Valid post |
| 41 | * status' are 'publish', 'pending', 'draft', 'auto-draft', 'future', |
| 42 | * 'private', 'inherit', 'trash'. |
| 43 | * } |