(使用自适应主题)我想要一个新的自定义用户登录页面。所以,把这段代码放在我的 template.php 中:
function mythemename_theme() {
$items = array();
// create custom user-login.tpl.php
$items['user_login'] = array(
'render element' => 'form',
'path' => drupal_get_path('theme', 'mythemename') . '/templates',
'template' => 'user-login',
'preprocess functions' => array(
'mythemename_preprocess_user_login'
),
);
return $items;
}
将 mythemename 更改为我的自定义主题名称。并创建了 user-login.tpl.php 文件并输入以下代码:
<?php
print drupal_render($form['name']);
print drupal_render($form['pass']);
print drupal_render($form['form_build_id']);
print drupal_render($form['form_id']);
print drupal_render($form['actions']);
?>
最后,清除我的网站缓存。但是当我点击 mysite.com/user 登录页面没有改变。
我在哪里出错?我怎么解决这个问题?