page-video.php 291 B

123456789101112131415161718
  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <style type="text/css">
  5. video {
  6. width:100%;
  7. height:auto;
  8. }
  9. </style>
  10. <video width="100%" controls>
  11. <source src="<?php echo get_post_meta( get_the_ID(), 'media', true ); ?>" type="video/mp4">
  12. Your browser does not support video
  13. </video>
  14. </body>
  15. </html>