Created
December 25, 2017 10:38
-
-
Save milapdave/0b00bb485021b46af765e2f5ea92d496 to your computer and use it in GitHub Desktop.
Insert a post into WordPress from an external script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Load WordPress | |
require_once 'path/to/www/wp-load.php'; | |
require_once ABSPATH . '/wp-admin/includes/taxonomy.php'; | |
// Set the timezone so times are calculated correctly | |
date_default_timezone_set('Europe/London'); | |
// Create post | |
$id = wp_insert_post(array( | |
'post_title' => $title, | |
'post_content' => $content, | |
'post_date' => date('Y-m-d H:i:s'), | |
'post_author' => $user_id, | |
'post_type' => 'post', | |
'post_status' => 'publish', | |
)); | |
if ($id) { | |
// Set category - create if it doesn't exist yet | |
wp_set_post_terms($id, wp_create_category('My Category'), 'category'); | |
// Add meta data, if required | |
add_post_meta($id, 'meta_key', $metadata); | |
} else { | |
echo "WARNING: Failed to insert post into WordPress\n"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment