[Support request] Add PHP code just before </head>

Home Forums Support [Support request] Add PHP code just before </head>

Home Forums Support Add PHP code just before </head>

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #2363320
    Butch Pornebo

    Would like to insert the following php code just before </head>

    <?php the_field(‘some_script_before_head_closing’); ?>

    What hook should I use?

    #2363325
    Ying
    Staff
    Customer Support

    Hi there,

    Try wp_head hook.

    #2363329
    Butch Pornebo

    I want to make sure that the php code will be inserted just before </head> and whatever else in front of it. right?

    #2363413
    Fernando
    Customer Support

    Hi Butch,

    Yes, if you want it inside <head> </head>, using hook wp_head should work.

    #2363425
    Butch Pornebo

    how do I make that the code I’m adding is the last one before the </head>?

    e.g.
    <head>
    ….. some other code
    ….. some other code
    ….. some other code
    … my code
    </head>

    #2363475
    Fernando
    Customer Support

    Set the priority to a really high value like 999999.

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.