Advertisement
Udoro

Add CSS to admin area

Apr 7th, 2021
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. function customAdmin() {
  2. $url = get_settings('siteurl');
  3. $url = $url . '/wp-admin/css/woo.css.';
  4. echo '<!-- custom admin css -->
  5. <link rel="stylesheet" type="text/css" href="' . $url . '" />
  6. <!-- /end custom adming css -->';
  7. }
  8. add_action('admin_head', 'customAdmin');
  9.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement