Skip to content

Instantly share code, notes, and snippets.

@khoand0000
Created October 27, 2015 22:47
Show Gist options
  • Save khoand0000/059cf0502dea88c7c91e to your computer and use it in GitHub Desktop.
Save khoand0000/059cf0502dea88c7c91e to your computer and use it in GitHub Desktop.
note when saving json with unicode by json_encode()
$content = [];
// ...
$my_post = array(
'post_title' => 'aaa',
'post_content' => str_replace("\\", '\\\\', json_encode($content)), // avoid saving \u1ec5 to u1ec5
'post_status' => 'pending',
'post_author' => 0,
);
// Insert the post into the database
$id = wp_insert_post($my_post);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment