Advertisement
Guest User

Untitled

a guest
Jan 24th, 2017
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. /*
  2. Theme Name: (theme name) Child
  3. Theme URI: (give URL)
  4. Description: (give description)
  5. Version: (give your version)
  6. Author: (author name)
  7. Author URI: (give URL)
  8. Template: (name of parent theme)
  9. */
  10.  
  11. <?php
  12. add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' );
  13. function my_theme_enqueue_styles() {
  14. wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
  15.  
  16. }
  17. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement