Created
March 31, 2021 08:02
-
-
Save YounesCheikh/667c0ce562c3bfb48caccd3953b4c5ea to your computer and use it in GitHub Desktop.
Enqueue child style
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 | |
add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' ); | |
function my_theme_enqueue_styles() { | |
wp_enqueue_style( 'child-style', get_stylesheet_uri(), | |
array( 'parenthandle' ), | |
wp_get_theme()->get('Version') // this only works if you have Version in the style header | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment