Hooks::include_metabox_advanced_options( int $post_id, null|int $ticket_id = null )
Includes the metabox advanced options for Tickets Commerce.
Contents
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
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 );
}
Changelog
| Version | Description |
|---|---|
| 5.1.9 | Introduced. |