Tribe__Tickets__Main::embed_head()

Adds content to the embed head tag

The embed header DOES NOT have wp_head() executed inside of it. Instead, any scripts/styles are explicitly output


Source

File: src/Tribe/Main.php

	public function embed_head() {
		$css_path = Tribe__Template_Factory::getMinFile( $this->plugin_url . 'src/resources/css/tickets-embed.css', true );
		$css_path = add_query_arg( 'ver', self::VERSION, $css_path );
		?>
		<link rel="stylesheet" id="tribe-tickets-embed-css" href="<?php echo esc_url( $css_path ); ?>" type="text/css" media="all">
		<?php
	}