wp_admin_css_uri( string $file = 'wp-admin' )

Displays the URL of a WordPress admin CSS file.


Description Description

See also See also


Top ↑

Parameters Parameters

$file

(string) (Optional) file relative to wp-admin/ without its ".css" extension.

Default value: 'wp-admin'


Top ↑

Return Return

(string)


Top ↑

Source 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 );
}

Top ↑

Changelog Changelog

Changelog
Version Description
2.3.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.