WP_Screen::in_admin

Advertisement

Summery Summery

Indicates whether the screen is in a particular admin

Syntax Syntax

WP_Screen::in_admin( string $admin = null )

Parameters Parameters

$admin

(Optional) The admin to check against (network | user | site). If empty any of the three admins will result in true.

Default value: null

Return Return

(bool) True if the screen is in the indicated admin, false otherwise.

Source Source

File: wp-admin/includes/class-wp-screen.php

	public function in_admin( $admin = null ) {
		if ( empty( $admin ) ) {
			return (bool) $this->in_admin;
		}

		return ( $admin === $this->in_admin );
	}

Advertisement

Changelog Changelog

Changelog
Version Description
3.5.0 Introduced.

Advertisement

Leave a Reply