我想将表单挂钩到外部函数。钩子通过名称加载我的表单:
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);
如何正确连接?
答案 0 :(得分:2)
使用
return wp_iframe(array('YourClassName', 'media_upload_potato_form'), $errors);