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