我应该在哪里上传我的PHP库?
我有这个库,我想上传到我的WP并从我的functions.php
访问它http://simplehtmldom.sourceforge.net/
我已将其下载到wp-content文件夹中,但我的代码中可能有错误的路径?我该怎么解决?感谢
答案 0 :(得分:0)
你可以通过多种方式做到这一点。根据您使用它的位置,调用此库的方法可能会有所不同。
正如@Kirk在您的问题评论中提到的,创建一个自定义插件。 Tutorial here并将您的库包含在自定义插件中以及所有依赖代码中。
让我们说你的插件目录结构是这样的:
d
我所做的是将PHP库文件放在名为 try {
root = new JSONObject(resplanguage);
JSONArray contacts = root.getJSONArray("data");
JSONObject obj = contacts.getJSONObject(0);
Iterator it = obj.keys();
while(it.hasNext() ) {
languagelist.add((String)obj.get(it.next()));
}
} catch (Exception e) {
e.printStackTrace();
}
的目录中,然后我们可以将其包含在- custom-plugin
- - lib
- - - simplehtmldom.php
- - custom-plugin.php
或您需要的任何地方。
lib