Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #741426

    What is the best method for inserting code into the header of every page of the Enfold theme? Thanks.

    #741427

    Hi J!

    Please add following code to Functions.php file in Appearance > Editor

    function my_custom_code(){
    //Your code goes here
    }
    add_action('wp_head', 'my_custom_code');

    Regards,
    Yigit

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.