如何在Wordpress插件文件夹中要求一个文件?

时间:2015-09-04 08:49:51

标签: wordpress wordpress-plugin include themes

我在wp-content / plugins / stripe /上安装了Stripe插件。我在theme / fifthteen / Payment.php中有一个名为“Payment.php”的页面。现在我想在我的Payment.php中包含文件wp-content / plugins / stripe / Stripe.php。我怎么能这样做?

1 个答案:

答案 0 :(得分:0)

使用    plugins_url($路径,$插件);

$ path将保存插件中文件的路径

$path = 'stripe.php';

$ plugin保存插件的名称

$plugin='stripe' ;

include plugins_url($path,$plugin) ;