WP_Plugin_Install_List_Table::get_installed_plugin_slugs(): array

In this article

Returns a list of slugs of installed plugins, if known.

Description

Uses the transient data from the updates API to determine the slugs of known installed plugins. This might be better elsewhere, perhaps even within get_plugins() .

Return

array

Source

protected function get_installed_plugin_slugs() {
	return array_keys( $this->get_installed_plugins() );
}

Changelog

VersionDescription
4.0.0Introduced.

User Contributed Notes

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