Skip to content

Instantly share code, notes, and snippets.

@WPCred1
Created March 7, 2023 09:46
Show Gist options
  • Save WPCred1/e5b80b0db5abb17ae2d72e655f1be18f to your computer and use it in GitHub Desktop.
Save WPCred1/e5b80b0db5abb17ae2d72e655f1be18f to your computer and use it in GitHub Desktop.
WordPress Child Theme
<?php
add_action( 'wp_enqueue_scripts', 'enqueue_parent_styles' );
function enqueue_parent_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