function nodewords_keywords_form in Nodewords: D6 Meta Tags 5
File
- metatags/
keywords.inc, line 30 - Support file for KEYWORDS meta tag.
Code
function nodewords_keywords_form($type, $value, $settings) {
return array(
'#type' => 'textfield',
'#title' => t('Keywords'),
'#default_value' => $value,
'#size' => 60,
'#maxlength' => $settings['max_size'],
'#description' => t('Enter a comma separated list of keywords for this page. Avoid duplication of words as this will lower your search engine ranking.'),
);
}