Notice: This thread is over two years old; the information may be outdated. Please consider creating a new thread if you require free support. If you have an active SiteOrigin Premium license, you can email our premium support desk at [email protected].
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!
Hi 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 );