Advertisement
Guest User

Load Custom Styles for Mantra Theme (2)

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