wp_admin_css_uri() WordPress Function
The wp_admin_css_uri() function is used to retrieve the URL of the admin CSS file. This function is located in the wp-admin/includes/file.php file.
wp_admin_css_uri( string $file = 'wp-admin' ) #
Displays the URL of a WordPress admin CSS file.
Description
See also
- WP_Styles::_css_href: and its ‘style_loader_src’ filter.
Parameters
- $file
- (string)(Optional)file relative to wp-admin/ without its ".css" extension. - Default value: 'wp-admin' 
Return
(string)
Source
File: wp-includes/general-template.php
function wp_admin_css_uri( $file = 'wp-admin' ) {
	if ( defined( 'WP_INSTALLING' ) ) {
		$_file = "./$file.css";
	} else {
		$_file = admin_url( "$file.css" );
	}
	$_file = add_query_arg( 'version', get_bloginfo( 'version' ), $_file );
	/**
	 * Filters the URI of a WordPress admin CSS file.
	 *
	 * @since 2.3.0
	 *
	 * @param string $_file Relative path to the file with query arguments attached.
	 * @param string $file  Relative path to the file, minus its ".css" extension.
	 */
	return apply_filters( 'wp_admin_css_uri', $_file, $file );
}
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
| Version | Description | 
|---|---|
| 2.3.0 | Introduced. |