FREEDeveloper Mode
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.
Meta values can be deleted individually or in bulk mode.
PROWP Object Overview
The pro version allows to view the current Post, User, Term, Options Page Object ID, Object Data overview, Meta Count, Inline Orphan Meta Cleanup and Single Meta status.
Module Render
ACF Extended
Howdy, ACF Extended
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);
}
// Or using acfe/init
add_action('acfe/init', 'my_acfe_modules');
function my_acfe_modules(){
// Enable Developer Mode
acfe_update_setting('dev', true);
}
// Or using constant
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');