1); } } /** * Implements hook_theme(). */ function metatag_dc_theme() { $info['metatag_dc'] = array( 'render element' => 'element', ); return $info; } /** * Theme callback for a Dublin Core meta tag. */ function theme_metatag_dc($variables) { $element = &$variables['element']; element_set_attributes($element, array( '#name' => 'name', '#schema' => 'schema', '#value' => 'content') ); unset($element['#value']); return theme('html_tag', $variables); }