从wordpress functions.php中调用PHP类中的方法

时间:2011-04-08 16:39:57

标签: php wordpress

我有一个名为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

我错过了什么?

1 个答案:

答案 0 :(得分:1)

尝试添加此行require_once 'MyClass.php';