0 ) { $post_type = get_post_type( $post_id ); if ( 'aiovg_videos' == $post_type ) { $post_meta = get_post_meta( $post_id ); if ( 'embedcode' == $post_meta['type'][0] ) { $player_template = 'iframe'; } } } foreach ( $embedded_sources as $source ) { if ( wp_is_mobile() || isset( $player_settings['use_native_controls'][ $source ] ) ) { if ( ! empty( $post_meta ) ) { if ( $source == $post_meta['type'][0] ) { $player_template = 'iframe'; } } elseif ( isset( $_GET[ $source ] ) ) { $player_template = 'iframe'; } } } if ( ! isset( $_COOKIE['aiovg_gdpr_consent'] ) && ! empty( $privacy_settings['show_consent'] ) && ! empty( $privacy_settings['consent_message'] ) && ! empty( $privacy_settings['consent_button_label'] ) ) { if ( 'iframe' == $player_template ) { $player_template = 'gdpr'; } else { foreach ( $embedded_sources as $source ) { if ( ! empty( $post_meta ) ) { if ( $source == $post_meta['type'][0] ) { $player_template = 'gdpr'; } } elseif ( isset( $_GET[ $source ] ) ) { $player_template = 'gdpr'; } } } } include AIOVG_PLUGIN_DIR . "public/templates/player-{$player_template}.php";