Hello, i have to insert some special java scripts (Its a special click check tool for hotels) in the body of some sites and forms?
Hi,
Try adding this at the very end of your theme / child theme functions.php file:
function add_custom_script(){
?>
<script>
</script>
<?php
}
add_action('wp_footer', 'add_custom_script');
Regards,
Josue
thank you, and how can i put the scripts in any single sites or forms?