#Developer ModeFREE
The Developer Mode allow you to view all Posts, Terms, Users & Options Page custom meta data in a readable format. This feature is very useful to check what is actually saved in any WordPress Object. Additionally, meta values can be deleted individually or in bulk mode.
ACF Extended
Howdy, ACF Extended
#Advanced FeaturesPRO
The pro version display additional information for the current object and add advanced features:
- Object ID
- Object data (
WP_Post
object) - Meta Count
- Clean Orphan Meta function
- Performance Mode status
- Inline metadata edit
#Enable The Module
The Developer Mode module is disabled 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(){
// enable developer mode
acf_update_setting('acfe/dev', true);
}
#Using acfe/init
add_action('acfe/init', 'my_acfe_modules');
function my_acfe_modules(){
// enable developer mode
acfe_update_setting('dev', true);
}
#Using wp-config.php file
// enable developer mode
define('ACFE_DEV', true);
#Hide The Module
ACF Extended use the native ACF setting show_admin
to determine if the module 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');