Last active
November 27, 2023 16:34
-
-
Save nathaningram/4569f14937cd64ad35668c0b1b54a3e9 to your computer and use it in GitHub Desktop.
Creating a Starter Site - Sample functions.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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