Skip to content

Instantly share code, notes, and snippets.

@BinaryKitten
Created February 22, 2016 23:11
Show Gist options
  • Select an option

  • Save BinaryKitten/b06c3ffe452bf1c0bbfc to your computer and use it in GitHub Desktop.

Select an option

Save BinaryKitten/b06c3ffe452bf1c0bbfc to your computer and use it in GitHub Desktop.
<?php
function insertPost( $post ) {
$wp_post = (array) $post;
$wp_postId = $wp_post['ID'];
unset($wp_post['ID']);
$wp_post['post_author'] = $this->user_id;
$wp_post['guid'] = str_replace( $baseUrl, $newUrl, $wp_post['guid'] );
$insertedPostResult = wp_insert_post( $wp_post, true );
return $insertedPostResult;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment