Skip to content

Instantly share code, notes, and snippets.

@mdmoinulhossain
Created August 9, 2025 12:44
Show Gist options
  • Save mdmoinulhossain/e5d840a4c72fb92cd1f0ff6e50c5c08d to your computer and use it in GitHub Desktop.
Save mdmoinulhossain/e5d840a4c72fb92cd1f0ff6e50c5c08d to your computer and use it in GitHub Desktop.

Revisions

  1. mdmoinulhossain created this gist Aug 9, 2025.
    17 changes: 17 additions & 0 deletions functions.php
    Original 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');
    ?>