Wordpress plugins
Add Admin CSS

Add Admin CSS

Version : 1.4
Tested up to : 4.5.10
Number of download : 36806
Author : Scott Reilly
Average rating : 5 / 5 on 22 votes 22 votes, 5 avg.rating

Screenshots

Add Admin CSS
Add Admin CSS
Add Admin CSS
Add Admin CSS

Ever want to tweak the appearance of the WordPress admin pages by hiding stuff, moving stuff around, changing fonts, colors, sizes, etc? Any modification you may want to do with CSS can easily be done via this plugin. Using this plugin you’ll easily be able to define additional CSS (inline and/or files by URL) to be added to all administration pages. You can define CSS to appear inline in the admin head (within style tags), or reference CSS files to be linked (via “link rel=’stylesheet'” tags). The referenced CSS files will appear in the admin head first, listed in the order defined in the plugin’s settings. Then any inline CSS are added to the admin head. Both values can be filtered for advanced customization (see Advanced section). Links: Plugin Homepage | Plugin Directory Page | Author Homepage Advanced You can also programmatically add to or customize any CSS defined in the “Admin CSS” field via the c2c_add_admin_css filter, like so: /** * Add CSS to admin pages. * * @param string $css String to be added to admin pages. * @return string */ function my_admin_css( $css ) { $css .= " #site-heading a span { color:blue !important; } #favorite-actions { display:none; } "; return $css; } add_filter( 'c2c_add_admin_css', 'my_admin_css' ); You can also programmatically add to or customize any referenced CSS files defined in the “Admin CSS Files” field via the c2c_add_admin_css_files filter, like so: /** * Add CSS file(s) to admin pages. * * @param array $files CSS files to be added to admin pages. * @return array */ function my_admin_css_files( $files ) { $files[] = 'http://yui.yahooapis.com/2.9.0/build/reset/reset-min.css'; return $files; } add_filter( 'c2c_add_admin_css_files', 'my_admin_css_files' );

Download now