WordPress 和 Zend
我想用 Google Data API 做一些事情,特别是联系人。到目前为止我发现的最简单的方法是使用 Zend。我遇到的问题是添加 Zend 框架。有谁知道如何使用 WordPress 做到这一点?
谢谢
I am wanting to do stuff with the Google Data API, the contacts specifically. The easist method i have found so far is using Zend. The problem I am having is adding the Zend framework. Does anyone know how to do this with WordPress?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
如果您无法设置自动加载,您可以使用“硬编码”包含 ->
在 /wp-content/themes/levitation/send.php 中插入第一行:
require_once 'your/path/to/zend/Zend/GData/ClientLogin.php';
问题是你需要解决所有错误并且始终包含缺少的类(类内部是包含的内容......
或者在主文件(猜测index.php)中插入:
you can use "hardcoded" includes if you fail to setup autoloading ->
in /wp-content/themes/levitation/send.php insert to the first line:
require_once 'your/path/to/zend/Zend/GData/ClientLogin.php';
Problem is you need to get through all the errors and alwas include the missing class (inside classes are the includes taken care of...
Or in the main file (guess index.php) insert:
这应该是非常微不足道的。
编写并测试一些设置 ZF 自动加载的引导代码,并确保其正常工作。
将该代码粘贴到 WordPress 插件中,并将其与 WordPress 中的正确挂钩相关联。
It should be pretty trivial.
Write and test some bootstrap code that sets up ZF's autoloading and make sure it generally works.
Stick that code in a wordpress plugin, and tie things up to the right hooks in wordpress.
试试这个 http://blueberryware.net/2008/09/04/ wp-library-autoloader-plugin
我想你需要的一切都在那里。
Try this http://blueberryware.net/2008/09/04/wp-library-autoloader-plugin
I think all you need is there.
确保您
在使用该类之前调用:。并且您有开发人员密钥。
Make sure that you are calling:
before you are using that class. And that you have a developer key.