qwip,
有一种方法可以在wordpress用户表运行时更新自定义表,您需要使用自定义函数进行编码,该函数在用户执行某些操作时调用。你可以通过add_action()
.
wordpress为用户提供了几个动作(即:。user_register
, deleted_user
, 等等)。
请参见以下代码示例:
//The code below that you can add to the Theme Functions file
//For user register action perform then change custom table fields.
add_action(\'manage_users_columns\',\'custom_modify_user_columns\');
function custom_modify_user_columns($user) {
//update query stuff here
$wpdb->update( $table, $data, $where, $format = null, $where_format = null );
}
上面的代码就是一个示例,您可以根据需要使用该结构。
我设置了一些wordpress用户操作参考URL,这将对您有所帮助。
帮助参考URL:
- user_register
- show_user_profile
- deleted_user希望这对你有帮助。
谢谢