18 lines
556 B
PHP
18 lines
556 B
PHP
<?php
|
|
add_filter( 'wp_enqueue_scripts', 'js_inject_jqueryui' );
|
|
function js_inject_jqueryui() {
|
|
if (!is_user_logged_in()) {
|
|
return;
|
|
}
|
|
if(page_id() === 2) {
|
|
?>
|
|
<script>
|
|
var script = document.createElement('script');
|
|
script.setAttribute('src', 'https://code.jquery.com/ui/1.12.1/jquery-ui.min.js');
|
|
script.setAttribute('integrity', 'sha256-VazP97ZCwtekAsvgPBSUwPFKdrwD3unUfSGVYrahUqU=');
|
|
script.setAttribute('crossorigin', 'anonymous');
|
|
document.getElementsByTagName('head')[0].appendChild(script);
|
|
</script>
|
|
<?php
|
|
}
|
|
}
|