add code in header

Solutions on MaxInterview for add code in header by the best coders in the world

showing results for - "add code in header"
Emil
27 Jan 2018
1/* Describe what the code snippet does so you can remember later on */
2add_action('wp_header', 'your_function_name');
3function your_function_name(){
4?>
5PASTE HEADER CODE HERE
6<?php
7};