drupal_add_link($attributes)
drupal/includes/common.inc, line 1950
Add a <link> tag to the page's HEAD.
This function can be called as long the HTML header hasn't been sent.
| Name | Description |
|---|---|
| Input validation | Functions to validate user input. |
function drupal_add_link($attributes) {
drupal_set_html_head('<link' . drupal_attributes($attributes) . " />\n");
}