wp-73k/src/enqueue.php

30 lines
457 B
PHP
Raw Permalink Normal View History

2019-05-23 12:30:31 -04:00
<?php
namespace WP_73k;
2019-05-23 12:30:31 -04:00
/**
* Enqueue scripts and styles
*/
add_action( 'wp_enqueue_scripts', function() {
2021-07-04 18:16:33 -04:00
$min_ext = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
2019-05-23 12:30:31 -04:00
2021-07-04 18:16:33 -04:00
// JS
wp_enqueue_script(
'wp_73k_js',
WP_73k_URL . "/dist/main{$min_ext}.js",
[],
WP_73k_VERSION,
true
);
2019-05-23 12:30:31 -04:00
2021-07-04 18:16:33 -04:00
// CSS
wp_enqueue_style(
'wp_73k_css',
WP_73k_URL . "/dist/main{$min_ext}.css",
[],
WP_73k_VERSION,
''
);
2019-05-23 12:30:31 -04:00
} );