Tribe__Events__Pro__Main::single_event_the_meta_addon( string $html, int $event_id )

Filters in a meta walker group for new items regarding the PRO addon.


Parameters

$html

(string) (Required) The current HTML for the event meta..

$event_id

(int) (Required) The post_id of the current event.


Top ↑

Return

(string) The modified HTML for the event meta.


Top ↑

Source

File: src/Tribe/Main.php

		public function single_event_the_meta_addon( $html, $event_id ) {

			// add custom meta if it's available
			$html .= tribe_get_meta_group( 'tribe_event_group_custom_meta' );

			return $html;
		}