如何在drupal-7中将任何java-script文件或块添加到首页?
我只知道一个函数drupal_is_front_page()??但这对我的要求没有帮助。
<?php if ($if_front) { ?>
<script>......</script>
<?php } ?>不工作
发布于 2013-08-12 23:34:45
您可以将此代码添加到主题的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');
}
}https://stackoverflow.com/questions/18183225
复制相似问题