Created
January 30, 2016 21:20
-
-
Save yanknudtskov/f384fa699875943c9184 to your computer and use it in GitHub Desktop.
Get video length in WordPress
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$video_meta = get_post_meta( $attachment_ID, '_wp_attachment_metadata', true ); | |
echo $video_meta['length_formatted']; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
how can I get video attachment ID stored in $attachment_ID?