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



is_admin › WordPress Function

Depuis1.5.1
Dépréciéen/a
is_admin ( Pas de paramètres )
Retourne:
  • (bool) True if inside WordPress administration interface, false otherwise.
Défini(e) dans:
Codex:

Determines whether the current request is for an administrative interface page.

Does not check if the user is an administrator; use current_user_can() for checking roles and capabilities. For more information on this and similar theme functions, check out the {@link Conditional Tags} article in the Theme Developer Handbook.


Source

function is_admin() {
	if ( isset( $GLOBALS['current_screen'] ) ) {
		return $GLOBALS['current_screen']->in_admin();
	} elseif ( defined( 'WP_ADMIN' ) ) {
		return WP_ADMIN;
	}

	return false;
}