Changing the Node Creation Title in Drupal?

2019-05-22 14:33发布

Let's say I have a node called "product". When I create such a node, it will always display: "Create product" as the title of the node. How do I change this title WHEN CREATING THE NODE?

7条回答
倾城 Initia
2楼-- · 2019-05-22 15:14

Try this if none of the above has worked:

function YOUR-THEME_process_page(&$variables) {
  if (arg(0) == 'node' && arg(1) == 'add') {
    switch(arg(2)) {
      case 'YOUR-CONTENT-TYPE':
       $variables['title'] = t('New Record');
    }
  }
}
查看更多
登录 后发表回答