如何在没有$ this的情况下调用类中的函数?

时间:2012-05-29 14:12:02

标签: php wordpress class

我想将表单挂钩到外部函数。钩子通过名称加载我的表单:

add_action(media_uploader, 'the_hook');
function the hook(){
//.....
return wp_iframe( 'media_upload_potato_form', $errors );
}
function media_upload_potato_form(){ }// my form

如果我在下面显示的类中使用上述函数,则会出现错误:

return wp_iframe($this->media_upload_potato_form, $errors);

如何正确连接?

1 个答案:

答案 0 :(得分:2)

使用

return wp_iframe(array('YourClassName', 'media_upload_potato_form'), $errors);