Drupal 7 自定义登录页模板

摘自

Drupal 7 主题定制user login form

第一步,打开主题目录下的template.php文件。

function yourthemename_theme() {
  $items = array();
  // create custom user-login.tpl.php
  $items['user_login'] = array(
   'render element' => 'form',
   'path' => drupal_get_path('theme', 'yourthemename') . '/templates',
   'template' => 'user-login',
   'preprocess functions' => array('yourthemename_preprocess_user_login'
  ),
 );
 return $items;
}

第二步,创建templates目录及其目录下的user-login.tpl.php。

(...)Read the rest of Drupal 7 自定义登录页模板 (31 words)

你可能感兴趣的:(Drupal 7 自定义登录页模板)