install theme to style wordpress admin -
i trying figure out how install theme style wordpress admin.
does know in root install these files?
http://themeforest.net/item/avenxo-responsive-angularjs-html-admin/11660185
thanks
first of there 2 ways of making wordpress admin themee: plugin or changing css. in case, recomended make new plugin because angular js needs more file js works fine. file js must included in core of wordpress.
here example init , activate new plugin in wordpress:
<?php /* plugin name: admin theme plugin uri: http://example.com/my-crazy-admin-theme description: wordpress admin theme - upload , activate. author: ms. wordpress version: 1.0 author uri: http://example.com */ function my_admin_theme_style() { wp_enqueue_style('my-admin-theme', plugins_url('wp-admin.css', __file__)); } add_action('admin_enqueue_scripts', 'my_admin_theme_style'); add_action('login_enqueue_scripts', 'my_admin_theme_style'); ?> i hope help, best regards
Comments
Post a Comment