Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

how to create wordpress website child theme

<?php

add_action( 'wp_enqueue_scripts', 'enqueue_parent_styles' );

function enqueue_parent_styles() {

wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css' );

}

?>
Source by blog.hubspot.com #
 
PREVIOUS NEXT
Tagged: #create #wordpress #website #child #theme
ADD COMMENT
Topic
Name
2+4 =