1 drupal.inc drupal_add_feed($url = NULL, $title = '')

Adds a feed URL for the current page.

Deprecated

since 1.0.0

See also

backdrop_add_feed()

Related topics

File

core/includes/drupal.inc, line 579
Contains constants and function wrappers for Drupal 7.x compatibility.

Code

function drupal_add_feed($url = NULL, $title = '') {
  return backdrop_add_feed($url, $title);
}