Configuration
function add_custom_options() {
if( ! class_exists( 'Alchemy_Options\Includes\Options' ) || wp_doing_ajax() ) {
return;
}
$options = array(
'options' => array(
/* options will go here */
),
);
new Alchemy_Options\Includes\Options( $options );
}
add_action( 'init', 'add_custom_options' );Grouping
Last updated