Skip to content

Instantly share code, notes, and snippets.

@trueqap
Last active July 14, 2019 00:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save trueqap/fab2ae2ff5a98b50095df731920122a9 to your computer and use it in GitHub Desktop.
Save trueqap/fab2ae2ff5a98b50095df731920122a9 to your computer and use it in GitHub Desktop.
WordPress Child theme example functions.php
<?php
add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' );
function my_theme_enqueue_styles() {
wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment