Advertisement
jan_dembowski

Adventure Journal Child Theme functions.php

Apr 30th, 2012
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.34 KB | None | 0 0
  1. <?php
  2.  
  3. // Remove the Adventure Journal parent style.css and add the child theme's style.css
  4.  
  5. add_action( 'wp_print_styles' , 'mh_remove_parent_css' , 50 );
  6.  
  7. function mh_remove_parent_css() {
  8.         wp_dequeue_style( 'theme' );
  9.         wp_enqueue_style( 'child-theme' , get_bloginfo( 'stylesheet_directory' ) . '/style.css' , '' , '' );
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement