How add this code below title? Viewing 3 posts - 1 through 3 (of 3 total) Author Posts January 10, 2017 at 9:48 pm #7278 AndréGuest Are you okay? I need to add a javascript code under the title. How do I do that? Best <title><?php wp_title( ‘|’, true, ‘right’ ); ?></title> JAVASCRIPT GOES HERE So.. <title>My title blog</title> JAVASCRIPT GOES HERE 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 } January 12, 2017 at 2:49 am #7280 AndréGuest Thanks! Author Posts Viewing 3 posts - 1 through 3 (of 3 total) The forum ‘Frontier’ is closed to new topics and replies.