Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /**
- *
- * The trailer button
- *
- */
- if( ! defined('ABSPATH' ) ){
- exit;
- }
- ?>
- <div class="button-group button-group-trailer">
- <?php if( ! isset( $_GET['view_trailer'] ) ): ?>
- <?php printf(
- '<a class="btn shadow-none px-1" title="%s" href="%s">',
- esc_html__( 'Watch Trailer' ),
- esc_url( get_post_meta( get_the_ID(), 'video_trailer', true ) )
- )?>
- <span class="btn__icon icon-video text-secondary"></span>
- <?php else:?>
- <?php printf(
- '<a class="btn shadow-none px-1" title="%s" href="%s">',
- esc_html__( 'Watch Video' ),
- esc_url( get_permalink( get_the_ID() ) )
- )?>
- <span class="btn__icon icon-play text-secondary"></span>
- <?php endif;?>
- </a>
- </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement