0

您将如何仅在 drupal-7 中将任何 java 脚本文件或块添加到首页?

我只知道一个函数函数 drupal_is_front_page()?? 但根据我的要求它没有帮助

<?php if ($if_front) { ?>

<script>......</script>

<?php } ?>

不工作

4

1 回答 1

4

您可以将其添加到主题的 template.php 文件中:

function yourtheme_preprocess_page(&$vars) {
  if(drupal_is_front_page()) {
    drupal_add_js(drupal_get_path('theme', 'yourtheme') . '/js/your-front-script.js');
  }
}
于 2013-08-12T15:34:45.387 回答