function theme_simplemeta_meta_title in Simple Meta 7
Same name and namespace in other branches
- 6.2 simplemeta.theme.inc \theme_simplemeta_meta_title()
 
Theme meta title for output in the page's head.
Title is set via simplemeta_preprocess_html() i.e. differently from other so no need to return anything, just return empty string.
File
- ./
simplemeta.theme.inc, line 47  - Theming
 
Code
function theme_simplemeta_meta_title($vars) {
  $meta = $vars['meta'];
  return '';
}