Definition

drupal_add_link($attributes)
drupal-cvs/includes/common.inc, line 1889

Description

Add a <link> tag to the page's HEAD.

This function can be called as long the HTML header hasn't been sent.

Code

<?php
function drupal_add_link($attributes) {
  drupal_set_html_head('<link' . drupal_attributes($attributes) . " />\n");
}
?>