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
485 B
14 lines
485 B
<?php
|
|
|
|
function global_enqueue_scripts() {
|
|
wp_enqueue_style('gp-global-style', get_template_directory_uri() . '/static/css/style.css');
|
|
wp_enqueue_script( 'gp-global-script', get_template_directory_uri() . '/static/js/script.js', array(), null, true );
|
|
}
|
|
add_action('wp_enqueue_scripts', 'global_enqueue_scripts');
|
|
|
|
include_module('header');
|
|
include_component('shop', 'cart');
|
|
include_module('shop');
|
|
include_module('popup');
|
|
include_module('forms');
|
|
include_module('footer');
|
|
|