WP_Screen::set_parentage
Sets the parent information for the screen.
This is called in admin-header.php after the menu parent for the screen has been determined.
Method of the class: WP_Screen{}
No Hooks.
Returns
null. Nothing (null).
Usage
$WP_Screen = new WP_Screen(); $WP_Screen->set_parentage( $parent_file );
- $parent_file(string) (required)
- The parent file of the screen. Typically the
$parent_fileglobal.
Changelog
| Since 3.3.0 | Introduced. |
WP_Screen::set_parentage() WP Screen::set parentage code WP 6.9.1
public function set_parentage( $parent_file ) {
$this->parent_file = $parent_file;
list( $this->parent_base ) = explode( '?', $parent_file );
$this->parent_base = str_replace( '.php', '', $this->parent_base );
}