get_currentuserinfo() deprecated in 4.5
-
Hi @sevenspark,
you need to update
get_currentuserinfo()with new functionwp_get_current_user()Here’s the link:
https://developer.ww.wp.xz.cn/reference/functions/get_currentuserinfo/
https://developer.ww.wp.xz.cn/reference/functions/wp_get_current_user/How to make it backward compat:
https://shellcreeper.com/how-to-update-get_currentuserinfo-with-wp_get_current_user-for-wordpress-4-5/if( function_exists( 'wp_get_current_user' ) ){ $current_user = wp_get_current_user(); } else{ global $current_user; get_currentuserinfo(); }— David.
https://ww.wp.xz.cn/plugins/contact-form-7-dynamic-text-extension/
The topic ‘get_currentuserinfo() deprecated in 4.5’ is closed to new replies.