wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



wp_maybe_grant_resume_extensions_caps › WordPress Function

Depuis5.2.0
Dépréciéen/a
wp_maybe_grant_resume_extensions_caps ( $allcaps )
Paramètres:
  • (bool[]) $allcaps An array of all the user's capabilities.
    Requis: Oui
Retourne:
  • (bool[]) Filtered array of the user's capabilities.
Défini(e) dans:
Codex:

Filters the user capabilities to grant the 'resume_plugins' and 'resume_themes' capabilities as necessary.



Source

function wp_maybe_grant_resume_extensions_caps( $allcaps ) {
	// Even in a multisite, regular administrators should be able to resume plugins.
	if ( ! empty( $allcaps['activate_plugins'] ) ) {
		$allcaps['resume_plugins'] = true;
	}

	// Even in a multisite, regular administrators should be able to resume themes.
	if ( ! empty( $allcaps['switch_themes'] ) ) {
		$allcaps['resume_themes'] = true;
	}

	return $allcaps;
}