Singular_Order_Page::render_actions( WP_Post $post )
Renders the actions metabox.
Contents
Parameters
- $post
-
(WP_Post) (Required) The post object.
Return
(void)
Source
File: src/Tickets/Commerce/Admin/Singular_Order_Page.php
public function render_actions( $post ): void {
$this->template(
'order-actions-metabox',
[
'order' => tec_tc_get_order( $post ),
'single_page' => $this,
]
);
}
Changelog
| Version | Description |
|---|---|
| 5.13.3 | Introduced. |