Advertisement
Guest User

Untitled

a guest
Jul 1st, 2015
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. <?php
  2. /**
  3. * Movie Headbox Images Tab Template view
  4. *
  5. * Showing a movie's headbox images tab, Allociné style.
  6. *
  7. * @since 2.1
  8. *
  9. * @uses $id
  10. * @uses
  11. */
  12. ?>
  13.  
  14. <div id="movie-headbox-<?php echo $id ?>-trailers" class="wpmoly headbox allocine movie section trailers">
  15. <h3 class="wpmoly headbox allocine movie meta sub-title"><?php _e( 'Trailer', 'wpmovielibrary' ); ?></h3>
  16. <?php if ( '' != $trailer ) : ?>
  17. <iframe width="640" height="390" src="<?php echo $trailer ?>" frameborder="0" style="max-width:100%"></iframe>
  18. <?php else : ?>
  19. <p><?php _e( 'No trailer added for this movie.', 'wpmovielibrary-trailers' ) ?></p>
  20. <?php endif; ?>
  21. </div>
  22. <hr />
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement