RR Admin Theme
Just a Wordpress admin theme.
by Ren Rizzolo · github.com/renrizzolo/rr-wp-admin-theme · website
★ 0stars
0forks
Install
No release zip yet. The repository archive installs, but the folder name will carry the branch suffix and updates will not flow:
wp plugin install https://github.com/renrizzolo/rr-wp-admin-theme/archive/refs/heads/master.zipReadme
rr-admin-theme
Just a Wordpress admin theme.
preview


Installation
Clone or download
Put it in your wordpress plugins folder
The theme will be applied when the plugin is activated
If instead you want to have it as a user-selectable admin colour scheme, replace the content between */ and ?> in index.php with:
wp_admin_css_color(
'rr',
__('rr'),
plugin_dir_url( __FILE__ ) . '/css/rr-admin-theme.css',
array('#07273E', '#435e94', '#ededed', '#ea2265'),
array( 'base' => '#e5f8ff', 'focus' => '#fff', 'current' => '#fff' )
);
Example use in theme's functions.php (instead of as a plugin)
note in these examples the css file would need to be moved to wp-content/your_theme/library/css
forced theme:
function rr_admin_theme_style() {
wp_enqueue_style('admin-theme', get_template_directory_uri() . '/library/css/rr-admin-theme.css');
}
add_action('admin_enqueue_scripts', 'rr_admin_theme_style');
user selectable admin colour scheme:
wp_admin_css_color(
'rr',
__('rr'),
get_template_directory_uri() . '/library/css/admin-color.css',
array('#07273E', '#14568A', '#D54E21', '#2683AE'),
array( 'base' => '#e5f8ff', 'focus' => '#fff', 'current' => '#fff' )
);