You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
348 B
14 lines
348 B
<?php
|
|
|
|
function global_enqueue_scripts() {
|
|
|
|
wp_enqueue_style('gp-global-style', get_template_directory_uri() . '/static/css/style.css');
|
|
|
|
}
|
|
add_action('wp_enqueue_scripts', 'global_enqueue_scripts');
|
|
|
|
include_module('header');
|
|
include_component('shop', 'cart');
|
|
include_module('shop');
|
|
include_module('popup');
|
|
include_module('footer');
|
|
|