You are here

function theme_metatag_mobile_alt_handheld in Metatag 7

Theme callback for a handheld-formatted alternative URL.

The format is:


<link rel="alternate" media="handheld" href="https://phone.example.com/the/page" />
1 theme call to theme_metatag_mobile_alt_handheld()
metatag_mobile_metatag_info in metatag_mobile/metatag_mobile.metatag.inc
Implements hook_metatag_info().

File

metatag_mobile/metatag_mobile.module, line 74
Primary hook implementations for Metatag:Mobile.

Code

function theme_metatag_mobile_alt_handheld($variables) {
  $element =& $variables['element'];
  $args = array(
    '#name' => 'rel',
    '#media' => 'media',
    '#value' => 'href',
  );
  element_set_attributes($element, $args);
  unset($element['#value']);
  return theme('html_tag', $variables);
}