You are here

function hook_metatags_info_alter in Nodewords: D6 Meta Tags 6.3

Alters the meta tags description passed by other modules.

Parameters

&$tags_info: The array containing the information about the implemented meta tags.

See also

hook_metatags_info().

1 invocation of hook_metatags_info_alter()
nodewords_get_possible_tags in ./nodewords.module
Query all the modules implementing meta tags and return the list of meta tags.

File

./nodewords.api.php, line 134
. Nodewords hooks.

Code

function hook_metatags_info_alter(&$tags_info) {
  if (isset($tags_info['abstract'])) {
    $tags_info['abstract']['label'] = t('New label for abstract');
  }
}