我使用这些技术https://www.drupal.org/node/1089656覆盖阻止。
<div id="<?php print $block_html_id; ?>" class="footer-links-regions <?php print $classes; ?> clearfix"<?php print $attributes; ?>>
<div class="g4_20 tgfull">
<?php print render($title_prefix); ?>
<?php if ($block->subject): ?>
<h3<?php print $title_attributes; ?>><?php print $block->subject ?></h3>
<?php endif;?>
<?php print render($title_suffix); ?>
</div>
<!-- CONTENT -->
<div class="g16_20 tgfull mhidden" <?php print $content_attributes; ?> >
<?php print $content ?>
</div>
</div>
然后我通过管理员和自定义网址(链接显示)添加了自定义链接。我意识到我可以在内容中看到此链接(我的意思是此链接已添加到$content
)。我想分别处理这个链接和真正的内容。