Title: Head
Last modified: April 5, 2018

---

# Head

 *  [henningmanuel](https://wordpress.org/support/users/henningmanuel/)
 * (@henningmanuel)
 * [8 years, 2 months ago](https://wordpress.org/support/topic/head/)
 * I need to add some metas and script into <head> and </head> but I think Tromax
   blocked the option to edit Header.php. How can I do?
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fhead%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 1 replies (of 1 total)

 *  [saurabh.dhariwal](https://wordpress.org/support/users/saurabhdhariwal/)
 * (@saurabhdhariwal)
 * [8 years, 2 months ago](https://wordpress.org/support/topic/head/#post-10149929)
 * Hello henningmanuel,
 * You can use [Head & Footer Code](https://wordpress.org/plugins/head-footer-code/)
   plugin.
 * Or
 * You can use **wp_head** action to add scripts, css, metas etc. into <head>. Add
   below code into your current active child theme’s functions.php file or you can
   create [plugin](https://codex.wordpress.org/Writing_a_Plugin) for it.
 *     ```
       function my_custom_head_scripts() {
         ?>
         <meta name="viewport" content="width=device-width, initial-scale=1">
         <script>
           /** code **/
         </script>
         <?php
       }
   
       add_action( 'wp_head', 'my_custom_head_scripts' );
       ```
   
 * Hope this will helps you.
 * Thanks !

Viewing 1 replies (of 1 total)

The topic ‘Head’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/tromax/1.1.4/screenshot.jpg)
 * Tromax
 * [Support Threads](https://wordpress.org/support/theme/tromax/)
 * [Active Topics](https://wordpress.org/support/theme/tromax/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/tromax/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/tromax/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [saurabh.dhariwal](https://wordpress.org/support/users/saurabhdhariwal/)
 * Last activity: [8 years, 2 months ago](https://wordpress.org/support/topic/head/#post-10149929)
 * Status: not resolved