How to use wordpress function wp_enqueue_script() in php?
Question
I have a php function as shown below. The following function is being used at many places.
function render_brightcove_player($active_feed, $poster_image = false)
{
$poster = '';
if ($poster_image) {
$poster = 'poster=' . esc_url($poster_image);
}
?>
<div class="hsc-video" onclick="hscLogo()">
<div class="hsc-video__inner">
<script src="//players.brightcove.net/1242843915001/SJ3Tc5kb_default/index.min.js"></script>
</div>
</div>
<?php
wp_enqueue_script(
'miscellaneous-scripts',
HSC_TEMPLATE_URL . "/assets/js/miscellaneous.js"
);
}
I have added wordpress function wp_enqueue_script()
. Inside miscellaneous.js file I am using:
function hscLogo() {
document.getElementsByClassName("hsc-tv-logo")[0].style.display = "none";
}
I am wondering if that is the right way to use wp_enqueue_script()
function in php. Do I need to place wp_enqueue_script() somewhere else ?
This is the first time I am using wp_enqueue_script
in wordpress. Here is the tree structure of javascript folders/files.
0
javascript, php, wp-enqueue-script
4 years
2020-03-27T12:51:24-05:00
2020-03-27T12:51:24-05:00 0 Answers
107 views
0
Leave an answer