How to create new post with photo attached in WordPress using XMLRPC? How to create new post with photo attached in WordPress using XMLRPC? wordpress wordpress

How to create new post with photo attached in WordPress using XMLRPC?


I've been involved in WordPress sites (my current employer uses 3 of these) and posting stuff daily and by the bulk has forced me to use what I do best-- scripts!

They're PHP-based and are quick and easy to use and deploy. And security? Just use .htaccess to secure it.

As per research, XMLRPC when it comes to files is one thing wordpress really sucks at. Once you upload a file, you can't associate that attachment to a particular post! I know, it's annoying.

So I decided to figure it out for myself. It took me a week to sort it out. You will need 100% control over your publishing client that is XMLRPC compliant or this won't mean anything to you!

You will need, from your WordPress installation:

  • class-IXR.php, located in /wp-admin/includes
  • class-wp-xmlrpc-server.php, located in /wp-includes

class-IXR.php will be needed if you craft your own posting tool, like me. They have the correctly-working base64 encoder. Don't trust the one that comes with PHP.

You also need to be somewhat experienced in programming to be able to relate to this. I will try to be clearer.

  1. Modify class-wp-xmlrpc-server.php

    • Download this to your computer, through ftp. Backup a copy, just in case.
    • Open the file in a text editor. If it doesn't come formatted, (typically it should, else, it's unix-type carriage breaks they are using) open it elsewhere or use something like ultraedit.
    • Pay attention to the mw_newMediaObject function. This is our target. A little note here; WordPress borrows functionality from blogger and movabletype. Although WordPress also has a unique class sets for xmlrpc, they choose to keep functionality common so that they work no matter what platform is in use.
    • Look for the function mw_newMediaObject($args). Typically, this should be in line 2948. Pay attention to your text editor's status bar to find what line number you are in. If you can't find it still, look for it using the search/find function of your text editor.
    • Scroll down a little and you should have something that looks like this:

       $name = sanitize_file_name( $data['name'] ); $type = $data['type']; $bits = $data['bits'];
    • After the $name variable, we will add something. See below.

       $name = sanitize_file_name( $data['name'] ); $post = $data['post']; //the post ID to attach to. $type = $data['type']; $bits = $data['bits'];

      Note the new $post variable. This means whenever you will make a new file upload request, a 'post' argument will now be available for you to attach.

      How to find your post number depends on how you add posts with an xmlrpc-compliant client. Typically, you should obtain this as a result from posting. It is a numeric value.

      Once you've edited the above, it's time to move on to line 3000.

      // Construct the attachment array// attach to post_id 0$post_id = 0;$attachment = array(    'post_title' => $name,    'post_content' => '',    'post_type' => 'attachment',    'post_parent' => $post_id,    'post_mime_type' => $type,    'guid' => $upload[ 'url' ]);
    • So here's why no image is associated to any post! It is always defaulted to 0 for the post_parent argument!That's not gonna be the case anymore.

      // Construct the attachment array// attach to post_id 0$post_id = $post;$attachment = array(    'post_title' => $name,    'post_content' => '',    'post_type' => 'attachment',    'post_parent' => $post_id,    'post_mime_type' => $type,    'guid' => $upload[ 'url' ]);

      $post_id now takes up the value of $post, which comes from the xmlrpc request. Once this is committed to the attachment, it will be associated to whatever post you desire!

      This can be improved. A default value can be assigned so things don't get broken if no value is entered. Although in my side, I put the default value on my client, and no one else is accessing the XMLRPC interface but me.

    • With the changes done, save your file and re-upload it in the same path where you found it. Again, make sure to make backups.

      Be wary of WordPress updates that affects this module. If that happens, you need to reapply this edit again!

  2. Include class-IXR.php in your PHP-type editor. If you're using something else, well, I can't help you there. :(

Hope this helps some people.


When you post, WordPress will scan at the post for IMG tags.If WP finds the image, it's loaded in it's media library. If there's an image in the body, it will automatically attached it to the post.

Basically you have to:

  • post the media (image) first
  • Grab its URL
  • include the URL of the image with a IMG tag in the body of your post.
  • then create the post

Here is some sample code. It needs error handling, and some more documentation.

$admin ="***";$userid ="****";$xmlrpc = 'http://localhost/web/blog/xmlrpc.php';include '../blog/wp-includes/class-IXR.php';$client = new IXR_Client($xmlrpc);$author         =   "test";    $title          =   "Test Posting";$categories     =   "chess,coolbeans";$body           =   "This is only a test disregard </br>";$tempImagesfolder = "tempImages";$img = "1338494719chessBoard.jpg";$attachImage = uploadImage($tempImagesfolder,$img);$body .= "<img src='$attachImage' width='256' height='256' /></a>";createPost($title,$body,$categories,$author);/**/function createPost($title,$body,$categories,$author){    global $username, $password,$client;    $authorID =  findAuthor($author); //lookup id of author    /*$categories is a list seperated by ,*/    $cats = preg_split('/,/', $categories, -1, PREG_SPLIT_NO_EMPTY);    foreach ($cats as $key => $data){        createCategory($data,"","");    }    //$time = time();    //$time += 86400;    $data = array(        'title' => $title,        'description' => $body,        'dateCreated' => (new IXR_Date(time())),        //'dateCreated' => (new IXR_Date($time)),  //publish in the future        'mt_allow_comments' => 0, // 1 to allow comments        'mt_allow_pings' => 0,// 1 to allow trackbacks        'categories' => $cats,        'wp_author_id' => $authorID     //id of the author if set           );    $published = 0; // 0 - draft, 1 - published    $res = $client->query('metaWeblog.newPost', '', $username, $password, $data, $published);}/**/function uploadImage($tempImagesfolder,$img){    global $username, $password,$client;    $filename = $tempImagesfolder ."/" . $img;    $fs = filesize($filename);       $file = fopen($filename, 'rb');      $filedata = fread($file, $fs);        fclose($file);     $data = array(        'name'  => $img,         'type'  => 'image/jpg',          'bits'  => new IXR_Base64($filedata),         false //overwrite    );    $res = $client->query('wp.uploadFile',1,$username, $password,$data);    $returnInfo = $client->getResponse();    return $returnInfo['url'];     //return the url of the posted Image}/**/function findAuthor($author){    global $username, $password,$client;    $client->query('wp.getAuthors ', 0, $username, $password);    $authors = $client->getResponse();    foreach ($authors as $key => $data){        //  echo $authors[$key]['user_login'] . $authors[$key]['user_id'] ."</br>";        if($authors[$key]['user_login'] == $author){            return $authors[$key]['user_id'];        }    }    return "not found";}/**/function createCategory($catName,$catSlug,$catDescription){    global $username, $password,$client;    $res = $client->query('wp.newCategory', '', $username, $password,        array(            'name' => $catName,            'slug' => $catSlug,            'parent_id' => 0,            'description' => $catDescription        )    );}


After calling the method metaWeblog.newMediaObject, we need to edit the image entry on the database to add a parent (the previously created post with metaWeblog.newPost).

If we try with metaWeblog.editPost, it throws an error 401, which indicates that

// Use wp.editPost to edit post types other than post and page.if ( ! in_array( $postdata[ 'post_type' ], array( 'post', 'page' ) ) )    return new IXR_Error( 401, __( 'Invalid post type' ) );

The solution is to call wp.editPost, which takes the following arguments:

$blog_id        = (int) $args[0];$username       = $args[1];$password       = $args[2];$post_id        = (int) $args[3];$content_struct = $args[4];

So, just after newMediaObject, we do:

$status = $rpc->query(    'metaWeblog.newMediaObject',    $postID,    WP_USERNAME,    WP_PASSWORD,    $data);$response = $rpc->getResponse();if( isset($response['id']) ) {    // ATTACH IMAGE TO POST    $image['post_parent'] = $postID;    if( !$rpc->query('wp.editPost', '1', WP_USERNAME, WP_PASSWORD, $response['id'], $image)) {        die( 'An error occurred - ' . $rpc->getErrorCode() . ":" . $rpc->getErrorMessage() );    }    echo 'image: ' . $rpc->getResponse();    // SET FEATURED IMAGE    $updatePost['custom_fields'] = array( array( 'key' => '_thumbnail_id', 'value' => $response['id'] ) );    if( !$rpc->query( 'metaWeblog.editPost', $postID, WP_USERNAME, WP_PASSWORD, $updatePost, $publishBool ) ) {        die( 'An error occurred - ' . $rpc->getErrorCode() . ":" . $rpc->getErrorMessage() );    }    echo 'update: ' . $rpc->getResponse();}

I've used the Incutio XML-RPC Library for PHP to test and the rest of the code is exactly as in the question.