Advertisement
Guest User

Load Custom Styles for Mantra Theme

a guest
Jun 7th, 2012
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.38 KB | None | 0 0
  1. <?php
  2. // Load Custom Styles for Mantra Theme
  3. if ( is_user_logged_in() && current_user_can('administrator') ) {
  4.     add_action('wp_enqueue_scripts', 'my_mantra_custom_styles');
  5. }
  6. function my_mantra_custom_styles() {
  7.     wp_register_style('mantra-custom-styles', get_bloginfo('template_directory').'/custom-styles.css', false, '1.0', 'all');
  8.     wp_enqueue_style('mantra-custom-styles');
  9. }
  10. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement