WordPress.org

Codex

Interested in functions, hooks, classes, or methods? Check out the new WordPress Code Reference!

XML-RPC Support

XML-RPC aktivieren

Die XML-RPC-Funktionalität ist seit WordPress 3.5 standardmäßig eingeschaltet.

In früheren Versionen von WordPress war XML-RPC benutzerdefiniert. Um dies zu aktivieren, gehen Sie zu Settings_Writing_Screen#Remote Einstellungen > Schreiben > Remote Publishing und aktivieren Sie das Kontrollkästchen.

Endpunkt

Der XML-RPC-Server/Pfad lautet:

  • Wenn Ihre WordPress-Stammadresse http://example.com/wordpress/ ist, dann haben Sie das:
    • Server: http://example.com/(einige Tools benötigen nur den 'example.com' Hostnamen-Teil)
    • Pfad: /wordpress/xmlrpcc.php
    • Vollständige URL (nur für den Fall): http://example.com/wordpress/xmlrpcc.php

Verwandtes

(Add your language)

WordPress uses an XML-RPC interface. WordPress has its own implementation for WordPress-specific functionality in an API called the WordPress API. This should be used when possible, and your client should use the API variants beginning with the wp prefix.

WordPress also supports the Blogger API, metaWeblog API, Movable Type API, and the Pingback API.

With WordPress XML-RPC support, you can post to your WordPress blog using many popular Weblog Clients. The XML-RPC system can be extended by WordPress Plugins to modify its behavior.

Enabling XML-RPC

XML-RPC functionality is turned on by default since WordPress 3.5.

In previous versions of WordPress, XML-RPC was user enabled. To enable, go to Settings > Writing > Remote Publishing and check the checkbox.

Endpoint

The XML-RPC server/path is:

  • If your WordPress root is http://example.com/wordpress/, then you have:
    • Server: http://example.com/ (some tools need just the 'example.com' hostname part)
    • Path: /wordpress/xmlrpc.php
    • complete URL (just in case): http://example.com/wordpress/xmlrpc.php

Related