diff --git a/metatag_twitter_cards/metatag_twitter_cards.metatag.inc b/metatag_twitter_cards/metatag_twitter_cards.metatag.inc index 0740c31..3d705a6 100644 --- a/metatag_twitter_cards/metatag_twitter_cards.metatag.inc +++ b/metatag_twitter_cards/metatag_twitter_cards.metatag.inc @@ -83,6 +83,16 @@ function metatag_twitter_cards_metatag_info() { '#theme' => 'metatag_twitter_cards', ), ); + $info['tags']['twitter:site:id'] = array( + 'label' => t('Site\'s Twitter account ID'), + 'description' => t('The numerical Twitter account ID for the website, which will be displayed in the Card\'s footer.'), + 'class' => 'DrupalTextMetaTag', + 'group' => 'twitter-cards', + 'context' => array('global'), + 'element' => array( + '#theme' => 'metatag_twitter_cards', + ), + ); $info['tags']['twitter:creator'] = array( 'label' => t('Creator\'s Twitter account'), 'description' => t('The @username for the content creator / author for this page, including the @ symbol.'), @@ -92,6 +102,15 @@ function metatag_twitter_cards_metatag_info() { '#theme' => 'metatag_twitter_cards', ), ); + $info['tags']['twitter:creator:id'] = array( + 'label' => t('Creator\'s Twitter account ID'), + 'description' => t('The numerical Twitter account ID for the content creator / author for this page.'), + 'class' => 'DrupalTextMetaTag', + 'group' => 'twitter-cards', + 'element' => array( + '#theme' => 'metatag_twitter_cards', + ), + ); $info['tags']['twitter:url'] = array( 'label' => t('Page URL'), 'description' => t('The permalink / canonical URL of the current page.'),