Astra_Ext_Advanced_Hooks_Loader::register_admin_menu()
Register the admin menu for Custom Layouts
Description
Source
File: addons/advanced-hooks/classes/class-astra-ext-advanced-hooks-loader.php
public function register_admin_menu() {
$custom_layouts_capability = apply_filters( 'astra_custom_layouts_capability', 'edit_theme_options' );
add_submenu_page(
'themes.php',
__( 'Custom Layouts', 'astra-addon' ),
__( 'Custom Layouts', 'astra-addon' ),
$custom_layouts_capability,
'edit.php?post_type=' . ASTRA_ADVANCED_HOOKS_POST_TYPE
);
}
Expand full source code Collapse full source code View on Trac
Changelog
| Version | Description |
|---|---|
| 1.2.1 | Introduced. |