Skip to content

Instantly share code, notes, and snippets.

@YounesCheikh
Created March 31, 2021 08:02
Show Gist options
  • Save YounesCheikh/667c0ce562c3bfb48caccd3953b4c5ea to your computer and use it in GitHub Desktop.
Save YounesCheikh/667c0ce562c3bfb48caccd3953b4c5ea to your computer and use it in GitHub Desktop.
Enqueue child style
<?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