Answers for "how to create a child theme in wordpress with plugin"

PHP
0

create child theme in wordpress

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
    );
}
Posted by: Guest on January-23-2021

Code answers related to "how to create a child theme in wordpress with plugin"

Browse Popular Code Answers by Language