function drupal_add_link

6.x common.inc drupal_add_link($attributes)

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

3 calls to drupal_add_link()
blogapi_init in drupal-6.x/modules/blogapi/blogapi.module
drupal_add_feed in drupal-6.x/includes/common.inc
Add a feed URL for the current page.
template_preprocess_book_navigation in drupal-6.x/modules/book/book.module
Process variables for book-navigation.tpl.php.

File

drupal-6.x/includes/common.inc, line 1786
Common functions that many Drupal modules will need to reference.

Code

function drupal_add_link($attributes) {
  drupal_set_html_head('<link' . drupal_attributes($attributes) . ' />');
}