当然,您可以使用save\\u post操作以任何方式保存数据。简单地说,把它放在函数中。php文件。
add_action(\'save_post\', \'foo_save_custom_post_type\');
function foo_save_custom_post_type(){
//Use the following debug code to see what information is available to you
/*
echo "<pre>";
print_r($_REQUEST);
echo "</pre>";
exit;
*/
if(\'custom_post_type\' === $_REQUEST[\'post_type\']){
//Do your custom table bidding here
}
}
确保将其与自定义帖子类型隔离,因为此操作在所有帖子类型(即页面、帖子、其他CPT)上运行。不隔离您的操作可能会使系统资源非常昂贵。