我正在使用WordPress而我正在尝试编写一个使用其他插件文件的插件。获取文件的URL是正确的。当我从类中调用静态函数时,我能够包含该文件,它表示该类没有加载。
//loading the file
$url=plugins_url().'/nextgen-gallery/admin/functions.php';
include $url;
文件名为functions
。php,其中包含一个定义为nggAdmin
但是,当我调用function nggAdmin::create_gallery();,
时,我收到以下错误:
Fatal error: Class 'nggAdmin' not found in /var/www/html/wordpress/wp-content/plugins/Product/addProductForm.php on line 27
答案 0 :(得分:3)
plugins_url()
为您提供了网址,例如http://example.com/wordpress/wp-plugins/
,而不是服务器路径 - http://codex.wordpress.org/Function_Reference/plugins_url
使用WP_PLUGIN_DIR
代替 - http://codex.wordpress.org/Determining_Plugin_and_Content_Directories