Title: Header Footer Scripts
Last modified: March 15, 2023

---

# Header Footer Scripts

 *  Resolved [weejaprueen](https://wordpress.org/support/users/weejaprueen/)
 * (@weejaprueen)
 * [3 years, 2 months ago](https://wordpress.org/support/topic/header-footer-scripts-2/)
 * Is there functionality to insert scripts in headers footers using just <script
   ></script>?

Viewing 1 replies (of 1 total)

 *  Plugin Author [Shea Bunge](https://wordpress.org/support/users/bungeshea/)
 * (@bungeshea)
 * [3 years, 2 months ago](https://wordpress.org/support/topic/header-footer-scripts-2/#post-16570115)
 * Absolutely.
 * If you’re using Code Snippets Pro, you can select the appropriate option when
   creating a Content snippet, and your code will be compiled together into a single`.
   js` file that is linked in a `<script>` tag:
 * ![](https://i0.wp.com/i.imgur.com/bq0gGW1.png?ssl=1)
 * Alternatively, if you’re prefer to embed the script inline, as is often the case
   for tracking codes, you can select one of the two relevant options when creating
   a Content snippet:
 * ![](https://i0.wp.com/i.imgur.com/G3KZ31l.png?ssl=1)
 * Alternatively, if you’d prefer to embed the inline scripts or you’re not using
   Code Snippets Pro, you can achieve a similar result by adding this as a Functions
   snippet:
 *     ```wp-block-code
       add_action( 'wp_head', function () { ?>
       <script>
   
           // JavaScript code goes here
   
       </script>
       } );
       ```
   
 * Or for the footer section:
 *     ```wp-block-code
       add_action( 'wp_footer', function () { ?>
       <script>
   
           // JavaScript code goes here
   
       </script>
       } );
       ```
   

Viewing 1 replies (of 1 total)

The topic ‘Header Footer Scripts’ is closed to new replies.

 * ![](https://ps.w.org/code-snippets/assets/icon.svg?rev=2148878)
 * [Code Snippets](https://wordpress.org/plugins/code-snippets/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/code-snippets/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/code-snippets/)
 * [Active Topics](https://wordpress.org/support/plugin/code-snippets/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/code-snippets/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/code-snippets/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Shea Bunge](https://wordpress.org/support/users/bungeshea/)
 * Last activity: [3 years, 2 months ago](https://wordpress.org/support/topic/header-footer-scripts-2/#post-16570115)
 * Status: resolved