0

下面是代码

<div id="block-search-form" class="block block-search contextual-links-region first last odd" role="search">
..........................
............... 
</div>

此块内是搜索表单。此代码位于标题中。我想摆脱 class="" 中的块类,但我找不到这个模板文件。我已经搜索了几个小时,也搜索了整个互联网。有人可以帮帮我吗?我也在使用 Zen Theme

谢谢!!!!!

4

2 回答 2

6

首先要做的事情:devel_themer模块可以帮助您找到它。

第二:您正在寻找block.tpl.php模板。它可能会被覆盖,因此请查找以block--.

于 2012-12-20T08:02:43.833 回答
0

block.tpl.php 文件使用的代码如下。

<div id="<?php print $block_html_id; ?>" class="<?php print $classes; ?>"<?php print $attributes; ?>>

  <?php print render($title_prefix); ?>
<?php if ($block->subject): ?>
  <h2<?php print $title_attributes; ?>><?php print $block->subject ?></h2>
<?php endif;?>
  <?php print render($title_suffix); ?>

  <div class="content"<?php print $content_attributes; ?>>
    <?php print $content ?>
  </div>
</div>

模板文件不包含使用的类,但您可以使用hook_preprocess_block()删除一些类。

function mymodule_preprocess_block(&$variables) {
  if (strpos($variables['classes'], 'block-search') !== FALSE) {
    $variables['classes'] = str_replace('block ', '', $variables['classes']);
  }
}

相同的代码可用于主题,在其 template.php 文件中。

于 2012-12-20T15:29:16.090 回答