Skip to content

Instantly share code, notes, and snippets.

@Garconis
Last active December 29, 2017 13:42
Show Gist options
  • Save Garconis/b27f643406d9610276b4838bb05202b6 to your computer and use it in GitHub Desktop.
Save Garconis/b27f643406d9610276b4838bb05202b6 to your computer and use it in GitHub Desktop.
Divi | Child Theme
<?php
/* Custom functions code goes here. */
function my_theme_enqueue_styles() {
$parent_style = 'parent-style';
// enqueue the parent theme stylesheet
wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' );
}
add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment