drupal_add_link
- Versions
- 4.6 – 6
drupal_add_link($attributes)
Add a <link> tag to the page's HEAD.
Related topics
Code
includes/common.inc, line 1901
<?php
function drupal_add_link($attributes) {
drupal_set_html_head('<link'. drupal_attributes($attributes) ." />\n");
}
?>Login or register to post comments 