我试图在Visual Form Builder插件中添加一个钩子。 文档告诉我使用以下
在插件目录中创建一个php页面add_action( 'vfbp_after_save_entry', 'filter_vfbp_after_save_entry', 10, 2 );
function filter_vfbp_after_save_entry( $entry_ID, $form_ID ) {
// execute some custom code here
$friends = 'email@example.com';
mail( $friends, 'New Entries', 'We just got new entries for our contest!' );
return $entry_ID;
}
我一直收到以下错误:
严格标准:call_user_func_array()期望参数1是有效的回调,非静态方法allow_php_in_posts :: shortcode_advanced()不应该静态调用
任何人都知道如何解决这个问题或者指出我正确的方向?