Posts by Lucas Augusto • 19 points
2 posts
-
0
votes2
answers264
viewsQ: convert minutes to : hours and minutes
Have 150 minutos; how to convert it to stay 2h30min? For example, I was able to do a conversion using the code below, but it will return 2.55 where’s the mistake ? $minutos = 150; if($minutos >…
-
0
votes2
answers254
viewsQ: Check if user is administrator - WORDPRESS php
/* CHECK LOGIN ON ------------------------*/ global $current_user; $current_user = wp_get_current_user(); $user_info = get_userdata($current_user->ID); $first_name = $user_info->first_name;…