请还原WP核心文件并创建插件。对于这种类型的功能,可以使用Publish Post hook.
假设您的自定义表与WordPress位于同一数据库中,并且您希望保存当前用户的电子邮件地址:
add_action(\'publish_post\', \'update_my_custom_table\');
function update_my_custom_table() {
$current_user = wp_get_current_user();
$email = $current_user->user_email;
global $wpdb;
$addInfo = $wpdb->insert(\'wp_custom_table\', "$email");
}
希望这将使您开始走上正确的道路,这样您就可以插入任何试图添加的数据。可能有一种比添加自己的表更好的方法,这取决于您试图实现的目标,但您没有提到多少数据目标。