我有一个名为MyClass.php的独立PHP类。我需要在该类中调用一个方法并向其发送一个变量。这就是我在functions.php中所拥有的:
function email_submission($entry, $form){
MyClass::addEmail($entry["2"]);
}
//Fatal error: Class 'MyClass' not found in /path/wp-content/themes/mytheme/functions.php
我错过了什么?
答案 0 :(得分:1)
尝试添加此行require_once 'MyClass.php';