Advertisement
JSW3722

Untitled

Jun 30th, 2024
22
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. <?php
  2. /**
  3. *
  4. * The trailer button
  5. *
  6. */
  7. if( ! defined('ABSPATH' ) ){
  8. exit;
  9. }
  10. ?>
  11. <div class="button-group button-group-trailer">
  12.  
  13. <?php if( ! isset( $_GET['view_trailer'] ) ): ?>
  14.  
  15. <?php printf(
  16. '<a class="btn shadow-none px-1" title="%s" href="%s">',
  17. esc_html__( 'Watch Trailer' ),
  18. esc_url( get_post_meta( get_the_ID(), 'video_trailer', true ) )
  19. )?>
  20. <span class="btn__icon icon-video text-secondary"></span>
  21. <?php else:?>
  22. <?php printf(
  23. '<a class="btn shadow-none px-1" title="%s" href="%s">',
  24. esc_html__( 'Watch Video' ),
  25. esc_url( get_permalink( get_the_ID() ) )
  26. )?>
  27.  
  28. <span class="btn__icon icon-play text-secondary"></span>
  29. <?php endif;?>
  30. </a>
  31. </div>
  32.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement