Displays the URL of a WordPress admin CSS file.
Description
See also
- WP_Styles::_css_href(): and its ‘style_loader_src’ filter.
Parameters
$file
stringoptional- file relative to wp-admin/ without its ".css" extension.
Default:
'wp-admin'
Source
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 );
}
Hooks
- apply_filters( ‘wp_admin_css_uri’,
string $_file ,string $file ) Filters the URI of a WordPress admin CSS file.
Changelog
Version | Description |
---|---|
2.3.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.