You are here

function theme_simplemeta_meta_keywords in Simple Meta 6.2

Same name and namespace in other branches
  1. 7 simplemeta.theme.inc \theme_simplemeta_meta_keywords()

File

./simplemeta.theme.inc, line 38
theming

Code

function theme_simplemeta_meta_keywords($meta) {
  if (!empty($meta->data['keywords'])) {

    // @todo think about
    return '<meta name="keywords" content="' . trim(strip_tags(decode_entities($meta->data['keywords']))) . '" />';
  }
  return '';
}