Answers for "how to work on child theme wordpress"

PHP
1

how to make a child theme in wordpress

add_action( 'wp_enqueue_scripts', 'enqueue_parent_styles' );

function enqueue_parent_styles() {
   wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css' );
}
Posted by: Guest on November-04-2020

Code answers related to "how to work on child theme wordpress"

Browse Popular Code Answers by Language