相关:Wordpress, function after 'update user' is clicked
我有一个PHP脚本,需要运行每当任何用户配置文件在WordPress更新:
function profile_update() {
echo "<h2>fired on profile update</h2>";
// do stuff
add_action( 'edit_user_profile_update', 'profile_update' );
但是当用户更新时它不会触发。发生了什么?这个钩子应该完成这项工作...
期望操作钩子工作,不清楚哪里出了问题。
1条答案
按热度按时间fykwrbwg1#