WP_Debug_Data::get_wp_plugins_active(): array

In this article

This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.

Gets the WordPress active plugins section of the debug data.

Return

array

Source

private static function get_wp_plugins_active(): array {
	return array(
		'label'      => __( 'Active Plugins' ),
		'show_count' => true,
		'fields'     => self::get_wp_plugins_raw_data()['wp-plugins-active'],
	);
}

Changelog

VersionDescription
6.7.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.