dashboard_php_nag_class() WordPress Function

The dashboard_php_nag_class() function is used to display a warning to users who are running an outdated version of PHP on their website. This function is only available in WordPress 4.4 or later.

dashboard_php_nag_class( string[] $classes ) #

Adds an additional class to the PHP nag if the current version is insecure.


Parameters

$classes

(string[])(Required)Array of meta box classes.


Top ↑

Return

(string[]) Modified array of meta box classes.


Top ↑

Source

File: wp-admin/includes/dashboard.php

function dashboard_php_nag_class( $classes ) {
	$response = wp_check_php_version();

	if ( $response && isset( $response['is_secure'] ) && ! $response['is_secure'] ) {
		$classes[] = 'php-insecure';
	}

	return $classes;
}


Top ↑

Changelog

Changelog
VersionDescription
5.1.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.