Set GUID when posting.

git-svn-id: http://svn.automattic.com/wordpress/trunk@1604 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
saxmatt
2004-09-05 02:03:51 +00:00
parent ddba48add2
commit ed34ca04d8
3 changed files with 12 additions and 12 deletions

View File

@@ -41,13 +41,18 @@ function wp_insert_post($postarr = array()) {
$result = $wpdb->query($sql);
$post_ID = $wpdb->insert_id;
// Set GUID
$wpdb->query("UPDATE $wpdb->posts SET guid = '" . get_permalink($post_ID) . "' WHERE ID = '$post_ID'");
wp_set_post_cats('',$post_ID,$post_category);
wp_set_post_cats('', $post_ID, $post_category);
if ($post_status == 'publish') {
do_action('publish_post', $post_ID);
}
pingback($content, $post_ID);
// Return insert_id if we got a good result, otherwise return zero.
return $result ? $post_ID : 0;
}