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.www.ads-software.com/reference/functions/get_currentuserinfo/
https://developer.www.ads-software.com/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://www.ads-software.com/plugins/contact-form-7-dynamic-text-extension/
- The topic ‘get_currentuserinfo() deprecated in 4.5’ is closed to new replies.