PHP code example of yipeecaiey / wordpress-xmlrpc-client
1. Go to this page and download the library: Download yipeecaiey/wordpress-xmlrpc-client library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
yipeecaiey / wordpress-xmlrpc-client example snippets
# Your Wordpress website is at: http://wp-website.com
$endpoint = "http://wp-website.com/xmlrpc.php";
# The Monolog logger instance
$wpLog = new Monolog\Logger('wp-xmlrpc');
# Create client instance
$wpClient = new \HieuLe\WordpressXmlrpcClient\WordpressClient();
# Log error
$wpClient->onError(function($error, $event) use ($wpLog){
$wpLog->addError($error, $event);
});
# Set the credentials for the next requests
$wpClient->setCredentials($endpoint, 'username', 'password');