您可以通过更改特定表单的操作,然后使用该函数将数据库中的数据存储到新文件中来实现。
add_filter(\'wpcf7_form_action_url\', \'wpcf7_custom_form_action_url\');
function wpcf7_custom_form_action_url($url)
{
global $post;
$id_to_change = 1;
if($post->ID === $id_to_change)
return \'wheretopost.asp\';
else
return $url;
}