• I had updated for the first time SexyBoomarks. After that first upgrade I get this across my dashboard:

    Your theme has the call to <?php wp_head(); ?> but it is not called directly before </head> in the file “header.php”
    This is required to ensure that SexyBookmarks will work properly.

    When I go into my header.php file I’m unable to find “<?php wp_head(); ?>” anywhere.

    Any suggestions on what might be missing or an open div tag some where maybe?

Viewing 5 replies - 1 through 5 (of 5 total)
  • did you open the header.php file located in wp-content/themes/youthemename? Just checking. Paste it here. What theme are you using?

    Thread Starter M S

    (@mgstults)

    Hello. Yes I did go and search header.php. I am assuming it is telling me that <?php wp_head(); ?> is in the file but not before </head>. Either way I can’t find that line of code in it.

    I wonder if I just put <?php wp_head(); ?> before the close of the head tag and call it good? Is that what you were thinking?

    That’s right, you just need to add the code in..

    So find this..

    </head>

    And update it to now read..

    <?php wp_head(); ?>
    </head>

    Thread Starter M S

    (@mgstults)

    Mark, you the man! Thanks for the reassurance!

    You’re welcome… ??

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Header.php in 2.9.2. "Your theme has the call to "’ is closed to new replies.