Hooks::include_metabox_advanced_options( int $post_id, null|int $ticket_id = null )

Includes the metabox advanced options for Tickets Commerce.


Parameters

$post_id

(int) (Required) Which post we are attaching the metabox to.

$ticket_id

(null|int) (Optional) Ticket we are rendering the metabox for.

Default value: null


Top ↑

Source

File: src/Tickets/Commerce/Hooks.php

	public function include_metabox_advanced_options( $post_id, $ticket_id = null ) {
		$this->container->make( Editor\Metabox::class )->include_metabox_advanced_options( $post_id, $ticket_id );
	}

Top ↑

Changelog

Changelog
Version Description
5.1.9 Introduced.