Components::render_ar_fields_template( array $args )

Render the Attendee Registration fields template.


Parameters

$args

(array) (Required) Array of arguments.


Top ↑

Source

File: src/Tickets_Plus/Emails/Email/Components.php

	public function render_ar_fields_template( array $args ): void {
		$args = $this->add_attendee_meta_to_args( $args );

		/** @var \Tribe__Tickets_Plus__Template $template */
		$template = tribe( 'tickets-plus.template' );
		$template->template( 'emails/template-parts/body/ticket/ar-fields', $args, true );
	}

Top ↑

Changelog

Changelog
Version Description
5.7.0 Introduced.