我還沒有想到如何在用戶註冊時添加自定義的user_meta_data。註冊時的Wordpress user_meta_data
我認爲,代碼如下:
update_user_meta($user_id, 'weight', 5);
我不知道是什麼文件,這增加或者,或者如果它甚至正確的代碼。
下面是元數據表中的測試用戶元數據,它需要在註冊時添加的條目。
https://i.stack.imgur.com/FOcBP.png
我嘗試創建一個插件像ibenic建議。
<?php
/**
* @package Weight_Add
* @version 1.0
*/
/*
Plugin Name: Weight Add
Description: Adds weight data on user registry
Author: Straconis
Version: 1.0
*/
add_action('user_register', 'my_add_post_meta');
function my_add_post_meta($user_id) {
// Do checks if needed
update_user_meta($user_id, 'weight', 5);
}
?>
我愛的插件的想法,我甚至沒有想到這一點。謝謝。
設置用PHP一個cookie –