您可以这样做:
class testclass {
function test() {
echo \'howdy\';
}
}
add_action(\'wp_head\',array(\'testclass\',\'test\'));
或者这个:
$t = new testclass();
add_action(\'wp_head\',array($t,\'test\'));
它不像。。。
$t = new testclass();
add_action(\'wp_head\',\'t\');
// or this either, for good measure
$t = new testclass();
add_action(\'wp_head\',array(\'t\'));
。。但我不确定您使用这种模式想要实现什么。您已经实例化了该类,因此构造函数(如果存在)已经运行。如果没有回调方法,我不知道会发生什么。