You are here

function nodewords_content_extra_fields in Nodewords: D6 Meta Tags 6

Implements hook_content_extra_fields(). Allow the meta tags fields to be sorted in the node edit forms.

File

./nodewords.module, line 57
Implement an API that other modules can use to implement meta tags.

Code

function nodewords_content_extra_fields() {
  $extras = array();
  $extras['nodewords'] = array(
    'label' => t('Meta tags'),
    'description' => t('Meta tags fieldset.'),
    'weight' => 10,
  );
  return $extras;
}