-
-
Notifications
You must be signed in to change notification settings - Fork 37
Open
Labels
Backend (Server)Related to the server-side (includes PHP, HTML, etc).Related to the server-side (includes PHP, HTML, etc).Low PriorityNot of great importance, and certainly not urgent.Not of great importance, and certainly not urgent.WP Admin / Shortcode / WidgetRelated to the WordPress admin-side (like the Dashboard), or shortcodes/widgets.Related to the WordPress admin-side (like the Dashboard), or shortcodes/widgets.
Milestone
Description
Probably limit this to things like the options/settings that may override default or expected behavior so that we're not duplicating the entire dev metabox and Nebula warning system.
Here's how ACF does it:
/includes/class-acf-site-health.php:
add_action( 'debug_information', array( $this, 'render_tab_content' ) );
function render_tab_content($debug_info){
$fields = array();
$fields['license_type'] = array(
'label' => __( 'License Type', 'acf' ),
'value' => $license_status['name'],
);
$debug_info['nebula'] = array(
'label' => __( 'Nebula', 'nebula' ),
'description' => __( 'This section contains debug information about your ACF configuration which can be useful to provide to support.', 'acf' ),
'fields' => $fields,
);
return $debug_info;
}Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
Backend (Server)Related to the server-side (includes PHP, HTML, etc).Related to the server-side (includes PHP, HTML, etc).Low PriorityNot of great importance, and certainly not urgent.Not of great importance, and certainly not urgent.WP Admin / Shortcode / WidgetRelated to the WordPress admin-side (like the Dashboard), or shortcodes/widgets.Related to the WordPress admin-side (like the Dashboard), or shortcodes/widgets.
