Advertisement
Guest User

Untitled

a guest
Dec 7th, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. <strong>
  2. <?php
  3. $duration_in_seconds = get_post_meta( get_the_ID(), 'wpscript_duration', true );
  4. $minutes = floor($duration_in_seconds / 60);
  5. $seconds = $duration_in_seconds - (60 * $minutes);
  6. echo $minutes;
  7. echo " MIN";
  8. ?>
  9. </strong>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement