Singular_Order_Page::restore_current_parent_file()
Restores the current parent file.
Return
(void)
Source
File: src/Tickets/Commerce/Admin/Singular_Order_Page.php
public function restore_current_parent_file() {
if ( ! isset( self::$stored_parent_file ) ) {
return;
}
global $parent_file;
$parent_file = self::$stored_parent_file; // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited
}
Changelog
| Version | Description |
|---|---|
| 5.13.3 | Introduced. |