North child theme
Hello. Can you tell me what to put to functions.php for the north theme?
I have found for vantage but not for the north.
Thank you!
This is our free support forum. Replies can take several days.
Need fast email support? Get SiteOrigin Premium
Replies
1Hi Nik,
Please use following PHP for your functions.php:
<?php /** * Enqueue the parent theme stylesheet. */ function north_child_enqueue_parent_style() { wp_enqueue_style( 'north-parent-style', get_template_directory_uri() . '/style.css' ); wp_enqueue_style( 'north-child-style', get_stylesheet_uri(), array( 'north-parent-style' ) ); } add_action( 'wp_enqueue_scripts', 'north_child_enqueue_parent_style', 8 );Replies on this thread are closed.
Please create a new thread if you have a question, or purchase a SiteOrigin Premium license if you need one-on-one email support.