请恕小弟我愚钝,xmlrpc.inc远程获取和添加wordpress分类

WBOY
Freigeben: 2016-06-13 13:27:28
Original
757 Leute haben es durchsucht

请恕我愚钝,xmlrpc.inc远程获取和添加wordpress分类
已经实现发布文章了,但是始终不能做到:判断提交的分类是否存在,若存在则添加到此分类,不存在则添加新分类。

网上有现成的接口(metaWeblog.getCategories),我不会用。


下面是发布文章的代码:

PHP code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--><?php include("xmlrpc.inc");
$GLOBALS['xmlrpc_internalencoding'] = 'UTF-8';

$c = new xmlrpc_client("wordpress/xmlrpc.php", "localhost", 80);
$content['title']="测试标题4"; //标题
$content['description']="这是一个测试!!!!!!"; //内容
$content['mt_keywords']="测试1,测试2"; //标签
$content['wp_password']=""; //文章密码,输入后显示加密


//此处如何判断???
$content['categories'] = array("新分类"); //分类名


$x = new xmlrpcmsg("metaWeblog.newPost",
array(php_xmlrpc_encode("1"), //BLOG ID
php_xmlrpc_encode("admin"), //用户名
php_xmlrpc_encode("admin"), //密码
php_xmlrpc_encode($content),
php_xmlrpc_encode("1"))); //立即发表

$c->return_type = 'phpvals';
$r =$c->send($x);
if ($r->errno=="0")
echo "发表成功,文章序号为:".$r->val;
else {
echo "出错了";
print_r($r);
}
?>
Nach dem Login kopieren



这个例子只能实现添加到wordpress中已有分类,如没有,则文章添加到未分类中。


有哪位接触过远程发布wordpress的啊?




------解决方案--------------------
学习, 什么东东 ?没看懂。
Verwandte Etiketten:
Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage