Deprecated
This function has been deprecated.
ap_register_option_section( $group, $slug, $title, $fields )
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_section( $group, $slug, $title, $fields ) {
_deprecated_function( __FUNCTION__, '4.1.0' );
global $ap_option_tabs;
$ap_option_tabs[ $group ]['sections'][ $slug ] = array(
'title' => $title,
'fields' => $fields,
);
}
Expand full source code Collapse full source code View on GitHub: includes/deprecated.php:824
Add your comment