Categories
guides

Inject content to WP Site Head/Body

To be added to theme’s functions.php

// for injecting in to the <head> element
function my_head_script() {
        ?>
        // CODE HERE
        <?php
}
add_action( 'wp_head', 'my_head_script', 20 );

// for injecting in to the <body> element
function my_body_script() {
        ?>
        // CODE HERE
        <?php
}
add_action( 'wp_body_open', 'my_body_script', 20 );

For things like Google Analytics, etc…

By bo.

I'm @boyEatsSteak in a lot of places. I have been wanting 🍕 for weeks. I like gadgets and technology and keeping notes and tips for my future self since all I can remember is that I forget things.