For Child Theme - Acme Themes
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #90179
    happy.web.desginer
    Participant

    What I should put on the style.css for this theme?
    I typed following:
    <?php
    add_action( ‘wp_enqueue_scripts’, ‘enqueue_parent_styles’ );
    function enqueue_parent_styles() {
    wp_enqueue_style( ‘parent-style’, get_template_directory_uri().’/style.css’ );
    }

    When I activate child theme, it looks different from the parent theme.
    Am I missing something?

    #90195
    happy.web.desginer
    Participant

    Please don’t mind, I figured it out.
    It must be like this…

    <?php
    add_action( ‘wp_enqueue_scripts’, ‘my_theme_enqueue_styles’ );
    function my_theme_enqueue_styles() {
    $parenthandle = ‘parent-style’;
    $theme = wp_get_theme();
    wp_enqueue_style( $parenthandle, get_template_directory_uri() . ‘/style.css’,
    array(), // if the parent theme code has a dependency, copy it to here
    $theme->parent()->get(‘Version’)
    );
    wp_enqueue_style( ‘child-style’, get_stylesheet_uri(),
    array( $parenthandle ),
    $theme->get(‘Version’)
    );
    }

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.