wppaste
WordPress

wp_insert_post( array $postarr, bool $wp_error = false, bool $fire_after_hooks = true ): int|WP_Error

Since
1.0.0, 2.6.0, 4.2.0, 4.4.0, 5.6.0
Source
wp-includes/post.php:4598

Create or update a post programmatically with wp_insert_post(), passing fields like post_title, post_status, post_type, meta_input, and tax_input. It returns the new post ID on success and 0 on failure, or a WP_Error when $wp_error is true. Supplying an ID key updates that post instead of inserting a new one; new posts default to a draft of type post.

Inserts or updates a post in the database.

Description

If the $postarr parameter contains an 'ID', the corresponding post will be updated.
If not, a new post will be created using the values provided.

You can set the post date manually, by setting the values for 'post_date' and 'post_date_gmt' keys. You can close the comments or open the comments by setting the value for 'comment_status' key.

Compatibility

WordPress
since 5.6.0
PHP
7.4–8.6-dev
  • 6.7.7
  • 6.8.8
  • 6.9.7
  • 7.0.4
  • 7.1.0

Present in every tracked release (6.7.7 to 7.1.0), and compiles on PHP 7.4 through 8.6-dev.

Parameters

$postarrarray
An array of elements that make up a post to update or insert.
  • $IDintdefault: 0

    The post ID. If equal to something other than 0, the post with that ID will be updated.
  • $post_authorintdefault: is the current user ID

    The ID of the user who added the post.
  • $post_datestringdefault: is the current time

    The date of the post.
  • $post_date_gmtstringdefault: is the value of $post_date

    The date of the post in the GMT timezone.
  • $post_contentstringdefault: empty

    The post content.
  • $post_content_filteredstringdefault: empty

    The filtered post content.
  • $post_titlestringdefault: empty

    The post title.
  • $post_excerptstringdefault: empty

    The post excerpt.
  • $post_statusstringdefault: 'draft'

    The post status.
  • $post_typestringdefault: 'post'

    The post type.
  • $comment_statusstringdefault: is the value of 'default_comment_status' option

    Whether the post can accept comments. Accepts 'open' or 'closed'.
  • $ping_statusstringdefault: is the value of 'default_ping_status' option

    Whether the post can accept pings. Accepts 'open' or 'closed'.
  • $post_passwordstringdefault: empty

    The password to access the post.
  • $post_namestringdefault: is the sanitized post title when creating a new post

    The post name.
  • $to_pingstringdefault: empty

    Space or carriage return-separated list of URLs to ping.
  • $pingedstringdefault: empty

    Space or carriage return-separated list of URLs that have been pinged.
  • $post_parentintdefault: 0

    Set this for the post it belongs to, if any.
  • $menu_orderintdefault: 0

    The order the post should be displayed in.
  • $post_mime_typestringdefault: empty

    The mime type of the post.
  • $guidstringdefault: empty

    Global Unique ID for referencing the post.
  • $import_idintdefault: 0

    The post ID to be used when inserting a new post. If specified, must not match any existing post ID.
  • $post_categoryint[]

    Array of category IDs. Defaults to value of the 'default_category' option.
  • $tags_inputarraydefault: empty

    Array of tag names, slugs, or IDs.
  • $tax_inputarraydefault: empty

    An array of taxonomy terms keyed by their taxonomy name. If the taxonomy is hierarchical, the term list needs to be either an array of term IDs or a comma-separated string of IDs. If the taxonomy is non-hierarchical, the term list can be an array that contains term names or slugs, or a comma-separated string of names or slugs. This is because, in hierarchical taxonomy, child terms can have the same names with different parent terms, so the only way to connect them is using ID.
  • $meta_inputarraydefault: empty

    Array of post meta values keyed by their post meta key.
  • $page_templatestring

    Page template to use.
$wp_errorbooloptional
Whether to return a WP_Error on failure. Default false.Default: false
$fire_after_hooksbooloptional
Whether to fire the after insert hooks. Default true.Default: true

Return value

int|WP_Error
The post ID on success. The value 0 or WP_Error on failure.

Code examples

Every example is editable and runs in a real WordPress booted in your browser by WordPress Playground. Press Run, then edit the code: clicking away re-runs it. Nothing is sent anywhere until you do.

Create a draft post with meta and tags

meta_input and tags_input save related data in the same call, so no follow-up writes are needed.

$post_id = wp_insert_post( array(
	'post_title'   => 'Imported release notes',
	'post_content' => 'What changed in this release.',
	'post_status'  => 'draft',
	'post_author'  => 1,
	'tags_input'   => array( 'featured' ),
	'meta_input'   => array( 'price' => '0.00' ),
), true );

if ( is_wp_error( $post_id ) ) {
	echo 'Failed: ', $post_id->get_error_message();
} else {
	echo "created post {$post_id}\n";
	echo 'status:     ', get_post_status( $post_id ), "\n";
	echo 'price meta: ', get_post_meta( $post_id, 'price', true ), "\n";
	echo 'tags:       ', implode( ', ', wp_get_post_tags( $post_id, array( 'fields' => 'names' ) ) );
}

Pass true as the second argument or failures come back as 0 instead of a WP_Error.

Publish a page once, without creating duplicates

wp_insert_post() always inserts, so an importer that runs twice creates two posts unless it checks first.

$slug     = 'pricing';
$existing = get_page_by_path( $slug );

if ( $existing ) {
	echo "already exists as page {$existing->ID}, nothing to do";
} else {
	$id = wp_insert_post( array(
		'post_title'  => 'Pricing',
		'post_name'   => $slug,
		'post_type'   => 'page',
		'post_status' => 'publish',
		'post_parent' => 6,
		'post_author' => 1,
	), true );

	echo is_wp_error( $id ) ? $id->get_error_message() : "created page {$id} under page 6";
}

Press Run twice: the second run takes the guard branch.

Performance profile

How much work a call to wp_insert_post() does, and what it touches: the algorithmic scaling, the Zend instruction count per call across PHP versions, the hooks it hands control to, and the core code that calls it. Measured from the compiled opcodes, not a stopwatch, so every number is identical on any machine running the same PHP version, and every function in core is ranked by cost.

Cost class
Heavy

Reaches the database via ->insert().

Scaling
Constant

No loop in the body: the same number of instructions runs whatever you pass in.

Instructions
313–429

Executed per call on PHP 8.5, depending on the branch taken. The body compiles to 1043.

Plugin surface
16 hooks

Third-party callbacks on 'wp_insert_post_empty_content', 'wp_insert_post_parent', 'add_trashed_suffix_to_trashed_posts' run inside this call, and their cost is not bounded by anything here.

Called by
21

21 places in core call this, so the cost is paid more often than your own code shows.

What it touches

  • querycontent queryget_post()called directly
  • hookthird-party callbacksapply_filters()called directly
  • optionoption read or writeget_option()called directly
  • sqldatabase query->insert()called directly
  • cacheobject cachewp_cache_get()one call below wp_insert_post()
  • serializeserialisationmaybe_unserialize()one call below wp_insert_post()

Further down the call graph this can also reach transient. That is the worst case, several calls deep and usually down an error path, not what a normal call pays.

What one call costs · 195 distinct outcomes

One number would be a lie: the work depends on which branch runs. These are every distinct cost wp_insert_post() can have, taken from its control-flow graph on PHP 8.5.

WhenInstructionsCalls it makes
!isset($postarr) && !apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft"313get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), clean_post_cache(), get_post(), do_action()
!isset($postarr) && !apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft"323get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), clean_post_cache(), get_post(), do_action(), get_post(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports()324–325get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), clean_post_cache(), get_post(), do_action()
!isset($postarr) && !apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !isset($page_templates)328get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), __(), ->update()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && $thumbnail_id !== -1330–334get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), set_post_thumbnail(), clean_post_cache(), get_post(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && $thumbnail_id === -1330–334get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), delete_post_thumbnail(), clean_post_cache(), get_post(), do_action()
!isset($postarr) && !apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft"332–335get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports()334–335get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), clean_post_cache(), get_post(), do_action(), get_post(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !wp_attachment_is()335get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), clean_post_cache(), get_post(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && wp_attachment_is() && post_type_supports()337get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), post_type_supports(), clean_post_cache(), get_post(), do_action()
!isset($postarr) && !apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft"338get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !isset($page_templates)339–340get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), __(), ->update()
183 further outcomes, up to 429 instructions
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && $thumbnail_id !== -1340–344get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), set_post_thumbnail(), clean_post_cache(), get_post(), do_action(), get_post(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && $thumbnail_id === -1340–344get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), delete_post_thumbnail(), clean_post_cache(), get_post(), do_action(), get_post(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && post_type_supports()341get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), clean_post_cache(), get_post(), do_action()
!isset($postarr) && !apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft"342–345get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), do_action(), get_post(), do_action()
!isset($postarr) && !apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft"343get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), do_action(), wp_after_insert_post()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports()343–347get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !wp_attachment_is() && $thumbnail_id !== -1344get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), set_post_thumbnail(), clean_post_cache(), get_post(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !wp_attachment_is() && $thumbnail_id === -1344get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), delete_post_thumbnail(), clean_post_cache(), get_post(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && $thumbnail_id !== -1 && !isset($page_templates)345–349get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), set_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), __(), ->update()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && $thumbnail_id === -1 && !isset($page_templates)345–349get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), delete_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), __(), ->update()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !wp_attachment_is()345get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), clean_post_cache(), get_post(), do_action(), get_post(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && wp_attachment_is() && post_type_supports() && $thumbnail_id !== -1346get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), post_type_supports(), set_post_thumbnail(), clean_post_cache(), get_post(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !post_type_supports()346get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), current_theme_supports(), clean_post_cache(), get_post(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && wp_attachment_is() && post_type_supports()347get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), post_type_supports(), clean_post_cache(), get_post(), do_action(), get_post(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports()349–350get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && $thumbnail_id !== -1349–356get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), set_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && $thumbnail_id === -1349–356get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), delete_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && post_type_supports() && $thumbnail_id !== -1350get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), set_post_thumbnail(), clean_post_cache(), get_post(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && post_type_supports() && $thumbnail_id === -1350get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), delete_post_thumbnail(), clean_post_cache(), get_post(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !wp_attachment_is() && !isset($page_templates)350get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), __(), ->update()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && post_type_supports()351get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), clean_post_cache(), get_post(), do_action(), get_post(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && wp_attachment_is() && post_type_supports() && !isset($page_templates)352get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), post_type_supports(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), __(), ->update()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports()353–357get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), do_action(), get_post(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports()354–355get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), do_action(), wp_after_insert_post()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !wp_attachment_is()354–357get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !wp_attachment_is() && $thumbnail_id !== -1354get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), set_post_thumbnail(), clean_post_cache(), get_post(), do_action(), get_post(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !wp_attachment_is() && $thumbnail_id === -1354get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), delete_post_thumbnail(), clean_post_cache(), get_post(), do_action(), get_post(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && $thumbnail_id !== -1355–359get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), set_post_thumbnail(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && $thumbnail_id === -1355–359get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), delete_post_thumbnail(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !post_type_supports() && $thumbnail_id !== -1355get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), current_theme_supports(), set_post_thumbnail(), clean_post_cache(), get_post(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !post_type_supports() && $thumbnail_id === -1355get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), current_theme_supports(), delete_post_thumbnail(), clean_post_cache(), get_post(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && wp_attachment_is() && post_type_supports()356–359get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), post_type_supports(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && wp_attachment_is() && post_type_supports() && $thumbnail_id !== -1356get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), post_type_supports(), set_post_thumbnail(), clean_post_cache(), get_post(), do_action(), get_post(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && post_type_supports() && !isset($page_templates)356get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), __(), ->update()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !post_type_supports()356get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), current_theme_supports(), clean_post_cache(), get_post(), do_action(), get_post(), do_action()
!isset($postarr) && !apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft"357–360get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && $thumbnail_id !== -1359–366get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), set_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), do_action(), get_post(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && $thumbnail_id === -1359–366get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), delete_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), do_action(), get_post(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !wp_attachment_is() && $thumbnail_id !== -1 && !isset($page_templates)359get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), set_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), __(), ->update()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !wp_attachment_is() && $thumbnail_id === -1 && !isset($page_templates)359get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), delete_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), __(), ->update()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && $thumbnail_id !== -1360–364get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), set_post_thumbnail(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), do_action(), wp_after_insert_post()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && $thumbnail_id === -1360–364get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), delete_post_thumbnail(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), do_action(), wp_after_insert_post()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !wp_attachment_is()360get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), do_action()
!isset($postarr) && !apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft"360get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && post_type_supports()360–363get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && post_type_supports() && $thumbnail_id !== -1360get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), set_post_thumbnail(), clean_post_cache(), get_post(), do_action(), get_post(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && post_type_supports() && $thumbnail_id === -1360get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), delete_post_thumbnail(), clean_post_cache(), get_post(), do_action(), get_post(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && wp_attachment_is() && post_type_supports() && $thumbnail_id !== -1 && !isset($page_templates)361get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), post_type_supports(), set_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), __(), ->update()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !post_type_supports() && !isset($page_templates)361get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), current_theme_supports(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), __(), ->update()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && wp_attachment_is() && post_type_supports()362get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), post_type_supports(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), do_action()
!isset($postarr) && !apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft"362–365get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), do_action(), wp_after_insert_post()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !wp_attachment_is() && $thumbnail_id !== -1363–366get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), set_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !wp_attachment_is() && $thumbnail_id === -1363–366get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), delete_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !wp_attachment_is()364–367get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), do_action(), get_post(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !wp_attachment_is()365get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), do_action(), wp_after_insert_post()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && wp_attachment_is() && post_type_supports() && $thumbnail_id !== -1365–368get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), post_type_supports(), set_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), do_action()
!isset($postarr) && !apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft"365get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action(), wp_after_insert_post()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && post_type_supports() && $thumbnail_id !== -1 && !isset($page_templates)365get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), set_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), __(), ->update()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && post_type_supports() && $thumbnail_id === -1 && !isset($page_templates)365get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), delete_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), __(), ->update()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !post_type_supports()365–368get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), current_theme_supports(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !post_type_supports() && $thumbnail_id !== -1365get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), current_theme_supports(), set_post_thumbnail(), clean_post_cache(), get_post(), do_action(), get_post(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !post_type_supports() && $thumbnail_id === -1365get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), current_theme_supports(), delete_post_thumbnail(), clean_post_cache(), get_post(), do_action(), get_post(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && post_type_supports()366get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && wp_attachment_is() && post_type_supports()366–369get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), post_type_supports(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), do_action(), get_post(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && wp_attachment_is() && post_type_supports()367get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), post_type_supports(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), do_action(), wp_after_insert_post()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports()368–372get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !wp_attachment_is() && $thumbnail_id !== -1369get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), set_post_thumbnail(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !wp_attachment_is() && $thumbnail_id === -1369get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), delete_post_thumbnail(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && post_type_supports() && $thumbnail_id !== -1369–372get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), set_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && post_type_supports() && $thumbnail_id === -1369–372get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), delete_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && post_type_supports()370–373get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), do_action(), get_post(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !post_type_supports() && $thumbnail_id !== -1 && !isset($page_templates)370get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), current_theme_supports(), set_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), __(), ->update()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !post_type_supports() && $thumbnail_id === -1 && !isset($page_templates)370get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), current_theme_supports(), delete_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), __(), ->update()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && wp_attachment_is() && post_type_supports() && $thumbnail_id !== -1371get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), post_type_supports(), set_post_thumbnail(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports()371–372get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && post_type_supports()371get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), do_action(), wp_after_insert_post()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !post_type_supports()371get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), current_theme_supports(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports()373–377get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), do_action(), wp_after_insert_post()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !wp_attachment_is() && $thumbnail_id !== -1373–376get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), set_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), do_action(), get_post(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !wp_attachment_is() && $thumbnail_id === -1373–376get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), delete_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), do_action(), get_post(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && $thumbnail_id !== -1374–381get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), set_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && $thumbnail_id === -1374–381get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), delete_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !wp_attachment_is() && $thumbnail_id !== -1374get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), set_post_thumbnail(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), do_action(), wp_after_insert_post()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !wp_attachment_is() && $thumbnail_id === -1374get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), delete_post_thumbnail(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), do_action(), wp_after_insert_post()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !post_type_supports() && $thumbnail_id !== -1374–377get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), current_theme_supports(), set_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !post_type_supports() && $thumbnail_id === -1374–377get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), current_theme_supports(), delete_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && post_type_supports() && $thumbnail_id !== -1375get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), set_post_thumbnail(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && post_type_supports() && $thumbnail_id === -1375get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), delete_post_thumbnail(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && wp_attachment_is() && post_type_supports() && $thumbnail_id !== -1375–378get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), post_type_supports(), set_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), do_action(), get_post(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !post_type_supports()375–378get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), current_theme_supports(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), do_action(), get_post(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && wp_attachment_is() && post_type_supports() && $thumbnail_id !== -1376get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), post_type_supports(), set_post_thumbnail(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), do_action(), wp_after_insert_post()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports()376–377get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action(), wp_after_insert_post()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !post_type_supports()376get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), current_theme_supports(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), do_action(), wp_after_insert_post()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && $thumbnail_id !== -1377–381get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), set_post_thumbnail(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && $thumbnail_id === -1377–381get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), delete_post_thumbnail(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && $thumbnail_id !== -1379–386get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), set_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), do_action(), wp_after_insert_post()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && $thumbnail_id === -1379–386get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), delete_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), do_action(), wp_after_insert_post()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !wp_attachment_is()379–382get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), do_action()
!isset($postarr) && !apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft"379–382get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && post_type_supports() && $thumbnail_id !== -1379–382get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), set_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), do_action(), get_post(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && post_type_supports() && $thumbnail_id === -1379–382get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), delete_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), do_action(), get_post(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && post_type_supports() && $thumbnail_id !== -1380get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), set_post_thumbnail(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), do_action(), wp_after_insert_post()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && post_type_supports() && $thumbnail_id === -1380get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), delete_post_thumbnail(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), do_action(), wp_after_insert_post()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !post_type_supports() && $thumbnail_id !== -1380get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), current_theme_supports(), set_post_thumbnail(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !post_type_supports() && $thumbnail_id === -1380get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), current_theme_supports(), delete_post_thumbnail(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && wp_attachment_is() && post_type_supports()381–384get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), post_type_supports(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && $thumbnail_id !== -1382–386get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), set_post_thumbnail(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action(), wp_after_insert_post()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && $thumbnail_id === -1382–386get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), delete_post_thumbnail(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action(), wp_after_insert_post()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !wp_attachment_is()382get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !wp_attachment_is()384–387get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), do_action(), wp_after_insert_post()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && wp_attachment_is() && post_type_supports()384get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), post_type_supports(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action()
!isset($postarr) && !apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft"384–387get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action(), wp_after_insert_post()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !post_type_supports() && $thumbnail_id !== -1384–387get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), current_theme_supports(), set_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), do_action(), get_post(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !post_type_supports() && $thumbnail_id === -1384–387get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), current_theme_supports(), delete_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), do_action(), get_post(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && post_type_supports()385–388get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !post_type_supports() && $thumbnail_id !== -1385get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), current_theme_supports(), set_post_thumbnail(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), do_action(), wp_after_insert_post()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !post_type_supports() && $thumbnail_id === -1385get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), current_theme_supports(), delete_post_thumbnail(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), do_action(), wp_after_insert_post()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && wp_attachment_is() && post_type_supports()386–389get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), post_type_supports(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), do_action(), wp_after_insert_post()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !wp_attachment_is()387get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action(), wp_after_insert_post()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !wp_attachment_is() && $thumbnail_id !== -1388–391get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), set_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !wp_attachment_is() && $thumbnail_id === -1388–391get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), delete_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && post_type_supports()388get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && wp_attachment_is() && post_type_supports()389get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), post_type_supports(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action(), wp_after_insert_post()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && wp_attachment_is() && post_type_supports() && $thumbnail_id !== -1390–393get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), post_type_supports(), set_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports()390–394get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && post_type_supports()390–393get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), do_action(), wp_after_insert_post()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !post_type_supports()390–393get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), current_theme_supports(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !wp_attachment_is() && $thumbnail_id !== -1391get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), set_post_thumbnail(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !wp_attachment_is() && $thumbnail_id === -1391get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), delete_post_thumbnail(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !wp_attachment_is() && $thumbnail_id !== -1393–396get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), set_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), do_action(), wp_after_insert_post()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !wp_attachment_is() && $thumbnail_id === -1393–396get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), delete_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), do_action(), wp_after_insert_post()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && wp_attachment_is() && post_type_supports() && $thumbnail_id !== -1393get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), post_type_supports(), set_post_thumbnail(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && post_type_supports()393get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action(), wp_after_insert_post()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !post_type_supports()393get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), current_theme_supports(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && post_type_supports() && $thumbnail_id !== -1394–397get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), set_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && post_type_supports() && $thumbnail_id === -1394–397get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), delete_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && wp_attachment_is() && post_type_supports() && $thumbnail_id !== -1395–398get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), post_type_supports(), set_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), do_action(), wp_after_insert_post()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports()395–399get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action(), wp_after_insert_post()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !post_type_supports()395–398get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), current_theme_supports(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), do_action(), wp_after_insert_post()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && $thumbnail_id !== -1396–403get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), set_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && $thumbnail_id === -1396–403get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), delete_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !wp_attachment_is() && $thumbnail_id !== -1396get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), set_post_thumbnail(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action(), wp_after_insert_post()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !wp_attachment_is() && $thumbnail_id === -1396get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), delete_post_thumbnail(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action(), wp_after_insert_post()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && post_type_supports() && $thumbnail_id !== -1397get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), set_post_thumbnail(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && post_type_supports() && $thumbnail_id === -1397get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), delete_post_thumbnail(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && wp_attachment_is() && post_type_supports() && $thumbnail_id !== -1398get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), post_type_supports(), set_post_thumbnail(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action(), wp_after_insert_post()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !post_type_supports()398get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), current_theme_supports(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action(), wp_after_insert_post()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && post_type_supports() && $thumbnail_id !== -1399–402get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), set_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), do_action(), wp_after_insert_post()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && post_type_supports() && $thumbnail_id === -1399–402get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), delete_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), do_action(), wp_after_insert_post()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !post_type_supports() && $thumbnail_id !== -1399–402get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), current_theme_supports(), set_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !post_type_supports() && $thumbnail_id === -1399–402get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), current_theme_supports(), delete_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && $thumbnail_id !== -1401–408get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), set_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action(), wp_after_insert_post()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && $thumbnail_id === -1401–408get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), delete_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action(), wp_after_insert_post()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !wp_attachment_is()401–404get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && post_type_supports() && $thumbnail_id !== -1402get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), set_post_thumbnail(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action(), wp_after_insert_post()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && post_type_supports() && $thumbnail_id === -1402get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), delete_post_thumbnail(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action(), wp_after_insert_post()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !post_type_supports() && $thumbnail_id !== -1402get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), current_theme_supports(), set_post_thumbnail(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !post_type_supports() && $thumbnail_id === -1402get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), current_theme_supports(), delete_post_thumbnail(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && wp_attachment_is() && post_type_supports()403–406get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), post_type_supports(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !post_type_supports() && $thumbnail_id !== -1404–407get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), current_theme_supports(), set_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), do_action(), wp_after_insert_post()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !post_type_supports() && $thumbnail_id === -1404–407get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), current_theme_supports(), delete_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), do_action(), wp_after_insert_post()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !wp_attachment_is()406–409get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action(), wp_after_insert_post()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && post_type_supports()407–410get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !post_type_supports() && $thumbnail_id !== -1407get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), current_theme_supports(), set_post_thumbnail(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action(), wp_after_insert_post()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !post_type_supports() && $thumbnail_id === -1407get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), current_theme_supports(), delete_post_thumbnail(), clean_post_cache(), get_post(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action(), wp_after_insert_post()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && wp_attachment_is() && post_type_supports()408–411get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), post_type_supports(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action(), wp_after_insert_post()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !wp_attachment_is() && $thumbnail_id !== -1410–413get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), set_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !wp_attachment_is() && $thumbnail_id === -1410–413get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), delete_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && wp_attachment_is() && post_type_supports() && $thumbnail_id !== -1412–415get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), post_type_supports(), set_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && post_type_supports()412–415get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action(), wp_after_insert_post()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !post_type_supports()412–415get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), current_theme_supports(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !wp_attachment_is() && $thumbnail_id !== -1415–418get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), set_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action(), wp_after_insert_post()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !wp_attachment_is() && $thumbnail_id === -1415–418get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), delete_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action(), wp_after_insert_post()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && post_type_supports() && $thumbnail_id !== -1416–419get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), set_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && post_type_supports() && $thumbnail_id === -1416–419get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), delete_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && wp_attachment_is() && post_type_supports() && $thumbnail_id !== -1417–420get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), post_type_supports(), set_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action(), wp_after_insert_post()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !post_type_supports()417–420get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), current_theme_supports(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action(), wp_after_insert_post()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && post_type_supports() && $thumbnail_id !== -1421–424get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), set_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action(), wp_after_insert_post()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && post_type_supports() && $thumbnail_id === -1421–424get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), delete_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action(), wp_after_insert_post()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !post_type_supports() && $thumbnail_id !== -1421–424get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), current_theme_supports(), set_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !post_type_supports() && $thumbnail_id === -1421–424get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), current_theme_supports(), delete_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !post_type_supports() && $thumbnail_id !== -1426–429get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), current_theme_supports(), set_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action(), wp_after_insert_post()
!apply_filters() && empty($post_category) && $post_type !== "post" && $post_status !== "pending" && !empty($post_name) && $post_status && !$postarr && $post_status !== "private" && $previous_status !== "trash" && empty($import_id) && !empty($data) && !is_object_in_taxonomy() && $post_status === "auto-draft" && !current_theme_supports() && !post_type_supports() && $thumbnail_id === -1426–429get_current_user_id(), wp_parse_args(), sanitize_post(), apply_filters(), sanitize_title(), sanitize_title(), wp_resolve_post_date(), get_post_stati(), current_time(), current_time(), array_keys(), array_diff(), compact(), ID(), apply_filters(), wp_unique_post_slug(), compact(), apply_filters(), wp_unslash(), do_action(), ->insert(), is_object_in_taxonomy(), get_post_field(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), current_theme_supports(), delete_post_thumbnail(), clean_post_cache(), get_post(), wp_get_theme(), ->get_page_templates(), update_post_meta(), wp_transition_post_status(), do_action(), do_action(), get_post(), do_action(), do_action(), do_action(), do_action(), wp_after_insert_post()

This body has more branch combinations than are worth enumerating, so the table covers the outcomes found first rather than every one that exists.

Across PHP versions

PHPCompiledExecutedBranchesNotes
8.6-dev1041313–4291332 fewer instructions than PHP 8.5
8.51043313–429133
8.41043313–4291333 fewer instructions than PHP 8.3
8.31046316–432133
8.21046316–432133
8.11046316–4321333 fewer instructions than PHP 7.4
7.41049319–435133

An instruction is not a fixed amount of time, so a matching count is not necessarily the same speed; what it rules out is a difference in the work itself.

Hooks and filters fired · 16

16 hooks fire while wp_insert_post() runs, in this order:

  1. apply_filters( wp_insert_post_empty_content )filterline 4695 (+97 into the body)

    Filters whether the post should be considered "empty".

  2. apply_filters( wp_insert_post_parent )filterline 4868 (+270 into the body)

    Filters the post parent -- used to check for and prevent hierarchy loops.

  3. apply_filters( add_trashed_suffix_to_trashed_posts )filterline 4894 (+296 into the body)

    Filters whether or not to add a `__trashed` suffix to the name of trashed posts that match the name of the updated post.

  4. apply_filters( wp_insert_attachment_data )filterline 4963 (+365 into the body)

    Filters attachment post data before it is updated in or added to the database.

  5. apply_filters( wp_insert_post_data )filterline 4978 (+380 into the body)

    Filters slashed post data just before it is inserted into the database.

  6. do_action( pre_post_update )actionline 4993 (+395 into the body)

    Fires immediately before an existing post is updated in the database.

  7. do_action( pre_post_insert )actionline 5025 (+427 into the body)

    Fires immediately before a new post is inserted in the database.

  8. do_action( edit_attachment )actionline 5186 (+588 into the body)

    Fires once an existing attachment has been updated.

  9. do_action( attachment_updated )actionline 5199 (+601 into the body)

    Fires once an existing attachment has been updated.

  10. do_action( add_attachment )actionline 5209 (+611 into the body)

    Fires once an attachment has been added.

  11. do_action( edit_post_{$post->post_type} )actionline 5232 (+634 into the body)

    Fires once an existing post has been updated.

  12. do_action( edit_post )actionline 5242 (+644 into the body)

    Fires once an existing post has been updated.

  13. do_action( post_updated )actionline 5255 (+657 into the body)

    Fires once an existing post has been updated.

  14. do_action( save_post_{$post->post_type} )actionline 5275 (+677 into the body)

    Fires once a post has been saved.

  15. do_action( save_post )actionline 5286 (+688 into the body)

    Fires once a post has been saved.

  16. do_action( wp_insert_post )actionline 5297 (+699 into the body)

    Fires once a post has been saved.

Uses · 48

Show all 48

Used by · 21

Show all 21

Source code

function wp_insert_post( $postarr, $wp_error = false, $fire_after_hooks = true ) {	global $wpdb; 	// Capture original pre-sanitized array for passing into filters.	$unsanitized_postarr = $postarr; 	$user_id = get_current_user_id(); 	$defaults = array(		'post_author'           => $user_id,		'post_content'          => '',		'post_content_filtered' => '',		'post_title'            => '',		'post_excerpt'          => '',		'post_status'           => 'draft',		'post_type'             => 'post',		'comment_status'        => '',		'ping_status'           => '',		'post_password'         => '',		'to_ping'               => '',		'pinged'                => '',		'post_parent'           => 0,		'menu_order'            => 0,		'guid'                  => '',		'import_id'             => 0,		'context'               => '',		'post_date'             => '',		'post_date_gmt'         => '',	); 	$postarr = wp_parse_args( $postarr, $defaults ); 	unset( $postarr['filter'] ); 	$postarr = sanitize_post( $postarr, 'db' ); 	// Are we updating or creating?	$post_id = 0;	$update  = false;	$guid    = $postarr['guid']; 	if ( ! empty( $postarr['ID'] ) ) {		$update = true; 		// Get the post ID and GUID.		$post_id     = $postarr['ID'];		$post_before = get_post( $post_id ); 		if ( is_null( $post_before ) ) {			if ( $wp_error ) {				return new WP_Error( 'invalid_post', __( 'Invalid post ID.' ) );			}			return 0;		} 		$guid            = get_post_field( 'guid', $post_id );		$previous_status = get_post_field( 'post_status', $post_id );	} else {		$previous_status = 'new';		$post_before     = null;	} 	$post_type = empty( $postarr['post_type'] ) ? 'post' : $postarr['post_type']; 	$post_title   = $postarr['post_title'];	$post_content = $postarr['post_content'];	$post_excerpt = $postarr['post_excerpt']; 	if ( isset( $postarr['post_name'] ) ) {		$post_name = $postarr['post_name'];	} elseif ( $update ) {		// For an update, don't modify the post_name if it wasn't supplied as an argument.		$post_name = $post_before->post_name;	} 	$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' );

Changelog

Introduced in 1.0.0. Unchanged from 6.7.7 through 7.1.0.

  1. 6.7.7
  2. 6.8.8
  3. 6.9.7
  4. 7.0.4
  5. 7.1.0

Signature, return type and hooks compared across 5 parsed releases.

5.6.0
Added the $fire_after_hooks parameter.from the docblock
4.4.0
A 'meta_input' array can now be passed to $postarr to add post meta data.from the docblock
4.2.0
Support was added for encoding emoji in the post title, content, and excerpt.from the docblock
2.6.0
Added the $wp_error parameter to allow a WP_Error to be returned on failure.from the docblock
1.0.0
Introduced.from the docblock

About this page

Parsed data
Generated from the wordpress-develop 7.1.0 tag, from src/wp-includes/post.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
Corrections
Something wrong on this page? Report it and it gets fixed in the next regeneration.