| Versions | |
|---|---|
| 4.7 – 7 | drupal_get_html_head() |
Retrieve output to be displayed in the head tag of the HTML page.
includes/
<?php
function drupal_get_html_head() {
$output = "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\n";
$output .= theme('stylesheet_import', base_path() . 'misc/drupal.css');
return $output . drupal_set_html_head();
}
?>