Skip to content

Instantly share code, notes, and snippets.

Created April 20, 2014 13:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/b85768342180b987c0f0 to your computer and use it in GitHub Desktop.
Save anonymous/b85768342180b987c0f0 to your computer and use it in GitHub Desktop.
<?php
require_once('wp-config.php');
$my_post = array(
'post_title' => 'Title',
'post_content' => 'Content',
'post_status' => 'publish',
'post_author' => 1
);
// Insert the post into the database
wp_insert_post( $my_post );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment