Skip to content

Instantly share code, notes, and snippets.

@nathaningram
Last active November 27, 2023 16:34
Show Gist options
  • Select an option

  • Save nathaningram/4569f14937cd64ad35668c0b1b54a3e9 to your computer and use it in GitHub Desktop.

Select an option

Save nathaningram/4569f14937cd64ad35668c0b1b54a3e9 to your computer and use it in GitHub Desktop.
Creating a Starter Site - Sample functions.php
<?php
/* Enqueue child styles */
function child_enqueue_styles() {
wp_enqueue_style( 'child-theme', get_stylesheet_directory_uri() . '/style.css', array(), 100 );
}
add_action( 'wp_enqueue_scripts', 'child_enqueue_styles' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment