WordPress Options

Manage WordPress Options from the Settings > Options page. Options values (strings, serialized & Json) will be displayed in a readable form. Values can be edited or deleted.

ACF Extended
Howdy, ACF Extended
OptionsAdd New
IDNameValueAutoload
1 siteurlhttps://www.acf-extended.comyes
2 homehttps://www.acf-extended.comyes
3 blognameACF Extendedyes
4 admin_email[email protected]yes
5 blog_charsetUTF-8yes
IDNameValueAutoload
ACF Extended
Howdy, ACF Extended
Edit Option
Field Group

Hide the module

ACF Extended use the native ACF setting show_admin to determine if the module menu should be displayed or not. You can read more about that setting on the ACF article How to hide ACF menu from clients. Usage example:

add_filter('acf/settings/show_admin', '__return_false');

Disable the module

The WP Options module is enabled by default. It can be enabled and disabled in the Settings UIPRO, or with the following code:

// Using acf/init
add_action('acf/init', 'my_acfe_modules');
function my_acfe_modules(){

    // Disable WP Options
    acf_update_setting('acfe/modules/options', false);
    
}

// Or using acfe/init
add_action('acfe/init', 'my_acfe_modules');
function my_acfe_modules(){
    
    // Disable WP Options
    acfe_update_setting('modules/options', false);
    
}