Guest User

Untitled

a guest
Oct 19th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. function yourtheme_preprocess_node(&$vars) {
  2. $element = array(
  3. '#tag' => 'meta',
  4. '#attributes' => array(
  5. 'name' => 'robots',
  6. 'content' => 'index',
  7. ),
  8. );
  9. drupal_add_html_head($element, 'robots');
  10. }
Add Comment
Please, Sign In to add comment