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.
|
<?php
|
|
|
|
function header_enqueue_scripts() {
|
|
wp_enqueue_script( 'gp-header-script', get_template_directory_uri() . '/static/js/header.js', array(), null, true );
|
|
}
|
|
add_action('wp_enqueue_scripts', 'header_enqueue_scripts');
|
|
|
|
include_module('menu');
|
|
|
|
?>
|