Advertisement
SRD75

functions.php

Feb 15th, 2018
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. add_action( 'wp_enqueue_scripts', 'enqueue_parent_theme_style' );
  2. function enqueue_parent_theme_style() {
  3. wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css' );
  4. wp_enqueue_style( 'child-style', get_stylesheet_directory_uri().'/style.css' );
  5. }
  6.  
  7. produces error
  8.  
  9. Fatal error: Call to undefined function wp-enqueue-style in /home/user/public_html/wp-content/themes/Divi-SuperiorIT/functions-php on line 5
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement