Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在基本页面中显示登录表单。当我登录时,这会将我重定向到用户帐户页面。当我注销时,这什么也没显示。
<?php drupal_get_form("user_login"); ?>
解决了!
对于 D7:
<?php $elements = drupal_get_form("user_login"); $form = drupal_render($elements); echo $form; ?>
对于 D6:
<?php echo drupal_get_form("user_login"); ?>