Drupal Paragraphs模块 - 删除额外的标记

时间:2017-10-03 21:00:44

标签: php drupal drupal-7 paragraphs

我想删除生成的段落项周围的额外标记。

<h1>
  <div class="field field-name-field-title field-type-text field-label-hidden">
    <div class="field-items">
      <div class="field-item even">Title</div>
    </div>
  </div>
</h1>

我希望它显示如下:

<h1>Title</h1>

我没有幸运尝试段落问题https://www.drupal.org/node/2251909中的一些建议,例如编辑以下文件:

段落-item.tpl.php
段落,items.tpl.php
paragraphs.theme.inc

有没有人对此模块有任何经验并能够提供一些帮助?

1 个答案:

答案 0 :(得分:1)

您可以使用strip_tags()删除html标记。

<h1><?php print strip_tags(render($content['YOUR_FIELD'])); ?></h1>

<?php print strip_tags(render($content['YOUR_FIELD']), "<h1>"); ?>

希望这会对你有所帮助。