I want to make new posts on my blog remotely with XMLRPC API and I\'m trying to use metaWeblog.newPost
function, because it provides more features.
I successful
include "remotepost.class.php";
$content['title'] = $_POST['title'];
$content['categories'] = $_POST['category'];
$content['description'] = $_POST['description'];
changes to
$content['categories'] = array($_POST['category']);
It must be an array, it took my all night, i guess i have read more than 200 pages for this lol, gooooogled