Reply To: How add this code below title? January 11, 2017 at 11:59 pm #7279 RonKeymaster Use the wp_head action hook. This is a an action hook implemented in all themes and is not specific to Frontier. Example: add_action( 'wp_head', 'add_stuff_to_head' ); function add_stuff_to_head() { ?> // Your script goes here <?php }