Created
August 9, 2025 12:44
-
-
Save mdmoinulhossain/e5d840a4c72fb92cd1f0ff6e50c5c08d to your computer and use it in GitHub Desktop.
Revisions
-
mdmoinulhossain created this gist
Aug 9, 2025 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,17 @@ <?php function my_child_theme_enqueue_styles() { // Enqueue the parent theme stylesheet $parent_style = 'parent-style'; wp_enqueue_style($parent_style, get_template_directory_uri() . '/style.css'); // Enqueue the child theme stylesheet wp_enqueue_style( 'child-style', get_stylesheet_directory_uri() . '/style.css', array($parent_style), wp_get_theme()->get('Version') ); } add_action('wp_enqueue_scripts', 'my_child_theme_enqueue_styles'); ?>