Hello,
It seem that Im Missing the call to wp_head() in my theme,
do you know what file do i need to add it?
thanks
Br,
Liat
Hello,
It seem that Im Missing the call to wp_head() in my theme,
do you know what file do i need to add it?
thanks
Br,
Liat
The wp_head() template tag should be placed immediately before the closing HTML </head> tag. e.g. change this:
</head>
...to this:
<?php wp_head(); ?>
</head>
Normally, you will find the closing HTML </head> tag in the header.php template file.
You must log in to post.