Skip to content

Instantly share code, notes, and snippets.

@LinzardMac
Created January 28, 2013 03:16
Show Gist options
  • Save LinzardMac/4652727 to your computer and use it in GitHub Desktop.
Save LinzardMac/4652727 to your computer and use it in GitHub Desktop.
$post = array(
'post_content' => $tweet->text,
'post_type' => 'imported_content',
'post_title' => __('Tweet', 'ttp').'-'.$tweet->id,
'post_status' => 'publish',
'post_date_gmt' => $gmt_date,
'post_date' => get_date_from_gmt($gmt_date),
'post_author' => $author->ID,
#'tax_input' => array('categories' => array('foo')) // Support for custom taxonomies.
);
$post_id = wp_insert_post($post);
update_post_meta( $post_id, 'tweet_author_avatar', 'test');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment