From 0ae4ea81c18134bbe6a564ffd92dc16e3cc785e9 Mon Sep 17 00:00:00 2001 From: Joseph Scott Date: Wed, 8 Feb 2012 23:32:25 +0000 Subject: [PATCH] Provide the attachment_id of a media item in the XML-RPC call wp.getMediaItem. Props skithund Fixes #18683 git-svn-id: https://develop.svn.wordpress.org/trunk@19885 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/class-wp-xmlrpc-server.php | 1 + 1 file changed, 1 insertion(+) diff --git a/wp-includes/class-wp-xmlrpc-server.php b/wp-includes/class-wp-xmlrpc-server.php index 613988ac32..e26705edcb 100644 --- a/wp-includes/class-wp-xmlrpc-server.php +++ b/wp-includes/class-wp-xmlrpc-server.php @@ -2260,6 +2260,7 @@ class wp_xmlrpc_server extends IXR_Server { 'caption' => $attachment->post_excerpt, 'description' => $attachment->post_content, 'metadata' => wp_get_attachment_metadata($attachment->ID), + 'attachment_id' => (string) $attachment->ID ); return $attachment_struct;