jquery 在块标题旁边添加链接

lymnna71  于 2023-06-22  发布在  jQuery
关注(0)|答案(1)|浏览(103)

drupal block heading
我正试图添加一个链接旁边的标题,这个块通过点击它会去更多的新闻。
我使用css pseudo::after添加文本和徽标。但我无法添加文本链接。我可以用css添加任何链接吗?或者我应该使用JS吗?

0dxa2lsx

0dxa2lsx1#

您可以简单地制作一个块模板来完成此操作。D9/wig中的示例

{% if label %}
  <h2{{ title_attributes.addClass('block--title') }}>{{ label }}</h2> <a href="#">More news </a>
{% endif %}

如果你需要,打开模板建议确实可以帮助你找到正确的区块建议。
如果你还在使用D 7,你可以修改块的模板:

<div<?php print $attributes; ?>>
      <div class="block-inner clearfix">
        <?php print render($title_prefix); ?>
        <?php if ($block->subject): ?>
          <h2<?php print $title_attributes; ?>><?php print $block->subject; ?></h2> 
<a href="#">More news </a>
        <?php endif; ?>
        <?php print render($title_suffix); ?>
        
        <div<?php print $content_attributes; ?>>
          <?php print $content ?>
        </div>
      </div>
    </div>

相关问题