Check Post ID exisits before posting
-
Hi, Need a little help, i want to check if an ID exisits in WP before creating a post.
IF (Post ID already exists) Then {
Dont post anything
} ELSE {
Create a new post
I have the code which creates the posts, any ideas from here on:
`$my_post = array(
‘ID’ => $tumblrID,
‘post_title’ => $title,
‘post_content’ => $post,
‘post_status’ => ‘publish’,
‘post_author’ => 1,
‘tags_input’ => $tags,
‘post_category’ => array(8,39));
wp_insert_post( $my_post );`
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘Check Post ID exisits before posting’ is closed to new replies.