Deprecated
This function has been deprecated.
ap_register_option_group( string $group_slug, string $group_title )
Description #
Register anspress option tab and fields.
Parameters #
- $group_slugstring (Required) slug for links.
- $group_titlestring (Required) Page title.
Source #
File: includes/deprecated.php
function ap_register_option_group( $group_slug, $group_title ) { _deprecated_function( __FUNCTION__, '4.1.0' ); global $ap_option_tabs; $ap_option_tabs[ $group_slug ] = array( 'title' => $group_title, 'sections' => [], ); }
Expand full source code Collapse full source code View on GitHub: includes/deprecated.php:843
Add your comment