Advertisement
leppos

functions.php

Sep 4th, 2015
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1. <?php
  2. /**
  3.  * Child Theme functions and definitions
  4.  *
  5.  */
  6.  
  7.  
  8. /**
  9.  * Loading Parent theme stylesheet
  10.  *
  11.  */
  12. add_action( 'wp_enqueue_scripts', 'fullframe_child_enqueue_styles' );
  13. function fullframe_child_enqueue_styles() {
  14.     wp_enqueue_style( 'fullframe-parent-style', get_template_directory_uri() . '/style.css' );
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement