pbiron / wordpress-importer-v2

In-development rewrite of the WordPress (WXR) Importer
Other
12 stars 5 forks source link

Should "empty" posts be imported? #8

Closed pbiron closed 7 years ago

pbiron commented 7 years ago

By default, wp_insert_post() will not import an "empty" post, where empty is defined as:

$maybe_empty = 'attachment' !== $post_type && ! $post_content && ! $post_title && ! $post_excerpt && post_type_supports( $post_type, 'editor' ) && post_type_supports( $post_type, 'title' ) && post_type_supports( $post_type, 'excerpt' );