我在wp-content / plugins / stripe /上安装了Stripe插件。我在theme / fifthteen / Payment.php中有一个名为“Payment.php”的页面。现在我想在我的Payment.php中包含文件wp-content / plugins / stripe / Stripe.php。我怎么能这样做?
答案 0 :(得分:0)
使用 plugins_url($路径,$插件);
$ path将保存插件中文件的路径
$path = 'stripe.php';
$ plugin保存插件的名称
$plugin='stripe' ;
include plugins_url($path,$plugin) ;