Skip to content

Instantly share code, notes, and snippets.

@kerie
Created November 15, 2010 09:57
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 kerie/700230 to your computer and use it in GitHub Desktop.
Save kerie/700230 to your computer and use it in GitHub Desktop.
A part of xmlrpc.php
// WordPress API
‘wp.getUsersBlogs’ => ‘this:wp_getUsersBlogs’,
‘wp.getPage’ => ‘this:wp_getPage’,
‘wp.getPages’ => ‘this:wp_getPages’,
‘wp.newPage’ => ‘this:wp_newPage’,
‘wp.deletePage’ => ‘this:wp_deletePage’,
‘wp.editPage’ => ‘this:wp_editPage’,
‘wp.getPageList’ => ‘this:wp_getPageList’,
‘wp.getAuthors’ => ‘this:wp_getAuthors’,
‘wp.getCategories’ => ‘this:mw_getCategories’, // Alias
‘wp.getTags’ => ‘this:wp_getTags’,
‘wp.newCategory’ => ‘this:wp_newCategory’,
‘wp.deleteCategory’ => ‘this:wp_deleteCategory’,
‘wp.suggestCategories’ => ‘this:wp_suggestCategories’,
‘wp.uploadFile’ => ‘this:mw_newMediaObject’, // Alias
‘wp.getCommentCount’ => ‘this:wp_getCommentCount’,
‘wp.getPostStatusList’ => ‘this:wp_getPostStatusList’,
‘wp.getPageStatusList’ => ‘this:wp_getPageStatusList’,
‘wp.getPageTemplates’ => ‘this:wp_getPageTemplates’,
‘wp.getOptions’ => ‘this:wp_getOptions’,
‘wp.setOptions’ => ‘this:wp_setOptions’,
‘wp.getComment’ => ‘this:wp_getComment’,
‘wp.getComments’ => ‘this:wp_getComments’,
‘wp.deleteComment’ => ‘this:wp_deleteComment’,
‘wp.editComment’ => ‘this:wp_editComment’,
‘wp.newComment’ => ‘this:wp_newComment’,
‘wp.getCommentStatusList’ => ‘this:wp_getCommentStatusList’,
// Blogger API
‘blogger.getUsersBlogs’ => ‘this:blogger_getUsersBlogs’,
‘blogger.getUserInfo’ => ‘this:blogger_getUserInfo’,
‘blogger.getPost’ => ‘this:blogger_getPost’,
‘blogger.getRecentPosts’ => ‘this:blogger_getRecentPosts’,
‘blogger.getTemplate’ => ‘this:blogger_getTemplate’,
‘blogger.setTemplate’ => ‘this:blogger_setTemplate’,
‘blogger.newPost’ => ‘this:blogger_newPost’,
‘blogger.editPost’ => ‘this:blogger_editPost’,
‘blogger.deletePost’ => ‘this:blogger_deletePost’,
// MetaWeblog API (with MT extensions to structs)
‘metaWeblog.newPost’ => ‘this:mw_newPost’,
‘metaWeblog.editPost’ => ‘this:mw_editPost’,
‘metaWeblog.getPost’ => ‘this:mw_getPost’,
‘metaWeblog.getRecentPosts’ => ‘this:mw_getRecentPosts’,
‘metaWeblog.getCategories’ => ‘this:mw_getCategories’,
‘metaWeblog.newMediaObject’ => ‘this:mw_newMediaObject’,
// MetaWeblog API aliases for Blogger API
// see http://www.xmlrpc.com/stories/storyReader$2460
‘metaWeblog.deletePost’ => ‘this:blogger_deletePost’,
‘metaWeblog.getTemplate’ => ‘this:blogger_getTemplate’,
‘metaWeblog.setTemplate’ => ‘this:blogger_setTemplate’,
‘metaWeblog.getUsersBlogs’ => ‘this:blogger_getUsersBlogs’,
// MovableType API
‘mt.getCategoryList’ => ‘this:mt_getCategoryList’,
‘mt.getRecentPostTitles’ => ‘this:mt_getRecentPostTitles’,
‘mt.getPostCategories’ => ‘this:mt_getPostCategories’,
‘mt.setPostCategories’ => ‘this:mt_setPostCategories’,
‘mt.supportedMethods’ => ‘this:mt_supportedMethods’,
‘mt.supportedTextFilters’ => ‘this:mt_supportedTextFilters’,
‘mt.getTrackbackPings’ => ‘this:mt_getTrackbackPings’,
‘mt.publishPost’ => ‘this:mt_publishPost’,
// PingBack
‘pingback.ping’ => ‘this:pingback_ping’,
‘pingback.extensions.getPingbacks’ => ‘this:pingback_extensions_getPingbacks’,
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment