Site icon Hip-Hop Website Design and Development

Can’t Add Two Scripts to Header [closed]

I’m attempting so as to add two scripts to the header of my website. I can set up a single script, equivalent to this:

<script sort="textual content/javascript">console.log("testA")</script>

I’m not ready so as to add two scripts, equivalent to these:

<script sort="textual content/javascript">console.log("testA")</script>
<script sort="textual content/javascript">console.log("testB")</script>

I’ve tried the next strategies, and all produce an error:

    add_action('wp_head', 'your_function_name0');
    operate your_function_name0(){
    ?>
    <script sort="textual content/javascript">console.log("your_function_0");</script>
    <script sort="textual content/javascript">console.log("your_function_1");</script>
    <?php
    };

The one means I’ve discovered so as to add two scripts is to edit the features.php file externally after which add it to my server.

There could also be some kind of validation occurring. I discover that I can’t add even one script if I don’t specify the sort attribute or if I enter a <noscript> tag.

I attempted disabling all plugins by renaming the plugins listing on the file system. That didn’t resolve the problem.

Edit 1/26/2020

Particular Errors