Skip to content

Instantly share code, notes, and snippets.

@MjHead
Created December 28, 2019 17:03
Show Gist options
  • Save MjHead/5499d6f0d651e08bf11be6a090f7480e to your computer and use it in GitHub Desktop.
Save MjHead/5499d6f0d651e08bf11be6a090f7480e to your computer and use it in GitHub Desktop.
<?php
add_action( 'import_post_meta', function( $post_id, $key, $value ) {
$slashit = array( '_form_data', '_notifications_data' );
if ( in_array( $key, $slashit ) && '[]' !== $value ) {
delete_post_meta( $post_id, $key );
update_post_meta( $post_id, $key, $value );
}
}, 10, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment