Wordpress Multisite以编程方式创建用户

时间:2012-02-28 15:08:51

标签: php wordpress api xml-rpc

我想通过直接将数据插入mySQl数据库,以编程方式在我的Word Press MultiSite上同时创建一个用户博客。我一直在寻找互联网,但实施这一点没有运气。

Wordpress Multi Site (Networking enabled)似乎是一个类似的问题,但我似乎无法实现那里提供的解决方案。任何人都可以帮助实现这个的基础吗?

由于

1 个答案:

答案 0 :(得分:1)

你应该使用wordpress多站点插件here。你只需要在multi -site中用你的新路径创建新博客的单个方法调用。下面是一个使用apache xml-rpc api的例子

public class Demo
{
  public static void main(String[] args)
  {
    System.out.println("Starting adicXmlRpcServer test"); 

    XmlRpcClientConfigImpl config = new XmlRpcClientConfigImpl(); 
    try
    { 
      config.setServerURL(new URL("http://localhost/wordpress/xmlrpc.php")); 
    }
    catch (MalformedURLException ex) 
    { 
      System.out.println("Invalid url....."+ex.getMessage());
      ex.printStackTrace(); 
    } 

    XmlRpcClient client = new XmlRpcClient(); 
    client.setConfig(config); 
    Map map = new HashMap();
    map.put("domain","localhost");
    map.put("path","/newStrore");
    map.put("title","newStrore");
    map.put("user_id","akhi0gupta007@gmail.com");

    Object[] params = new Object[] {new String("admin"),new String("9868"),map}; 

    try 
    { 
      Object result = (Object) client.execute("ms.CreateBlog",params); 
      ArrayList<String> dirListing = new ArrayList<String>(); 
      System.out.println(result.toString());
    } 
    catch (XmlRpcException ex) 
    { 
      System.out.println("Invalid url....."+ex.getMessage());
      ex.printStackTrace(); 
    }
  }
}