Same ID import/export accordion free

PHOTO EMBED

Tue Aug 15 2023 10:37:42 GMT+0000 (Coordinated Universal Time)

Saved by @Pulak #undefined

Code placement: https://prnt.sc/z3LWrxjZqPhW



​		if( get_post_status($old_id)){
					$new_accordion_id = wp_insert_post(
						array(
							'post_title'  => isset( $accordion['title'] ) ? $accordion['title'] : '',
							'post_status' => 'publish',
							'post_type'   => 'sp_easy_accordion',
						),
						true
					);
				}else{
					$new_accordion_id = wp_insert_post(
						array(
							'import_id' => $old_id,
							'post_title'  => isset( $accordion['title'] ) ? $accordion['title'] : '',
							'post_status' => 'publish',
							'post_type'   => 'sp_easy_accordion',
						),
						true
					);
				};
				
content_copyCOPY

https://codeshare.io/N3zvQd