Guest User

Untitled

a guest
May 6th, 2012
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. Drupal 7 and Display suite: How do I override the node title value?
  2. function MYMODULE_preprocess_node(&$vars) {
  3. if ($a_condition) {
  4. $vars['title'] = 'A new title';
  5. }
  6. }
Advertisement
Add Comment
Please, Sign In to add comment