将“添加新评论”替换为Drupal 中的图像链接
有没有一种简单的方法可以将 Drupal“添加新评论”链接转换为“添加新评论”gif 图像?
添加链接的语法似乎是
<?php if ($links): ?>
<div class="links"><?php print $links; ?></div>
<?php endif; ?>
Is there an easy way to convert Drupal "add new comment" link into an "add new comment" gif image?
Syntax that adds link appears to be
<?php if ($links): ?>
<div class="links"><?php print $links; ?></div>
<?php endif; ?>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这里有一些技巧,尽情发挥吧:) http://stopdesign .com/archive/2003/03/07/replace-text.html#notes
here are some techniques, go wild :) http://stopdesign.com/archive/2003/03/07/replace-text.html#notes
$links 内置在 template.php 中,模块可以添加到其中。
$links 是一个
并且该特定链接是
您可以使用 css 为 li.comment_add 提供一个{background= ..} 并在您的 themename_node_preprocess(&$vars) 之一中使用 str_replace 并从 $vars['links'] 中删除“添加新评论”
$links is built in your template.php and modules can add to it.
$links is a
<ul>
and that particular link is<li class="comment_add">
you can use css to give li.comment_add a{background=..} and use a str_replace in one of your themename_node_preprocess(&$vars) and remove "Add new comment" from $vars['links']