I'm trying to display certain information between the <head></head> tag for only one page on my website . I tried the following but I get a blank white screen for all my pages now. Any help would be really appreciated.
Thank you.
- Code: Select all
<?php
/**
* Core header file, invoked by the get_header() function
*
* @package Suffusion
* @subpackage Templates
*/
if (is_page(1194)) {
<head>
// PUT ALL THE INFORMATION THAT I WANT TO APPEAR BETWEEN THE HEAD TAG FOR PAGE 1194
wp_head();
</head>
}
else {
// PUT EVERYTHING ELSE THAT WAS ORIGINALLY IN THE HEADER.PHP FILE
}
