我目前正试图设计一个Wordpress主题,我没有最好的PHP知识,但到目前为止它还是相当不错。
我的一个问题是,如何添加类和ID来挂钩我的CSS?例如:
在每个帖子上生成“发表评论”链接的代码是:
<?php comments_popup_link('Leave a Comment', '1 Comment', '% Comments'); ?>
我想要设置这个样式,它显示为一个链接,但显然我不能仅仅为我的主列中的每个a
标记更改CSS。我需要添加某种类来挂钩。
我该怎么做?
<?php class="commentLnk" comments_popup_link('Leave a Comment', '1 Comment', '% Comments'); ?>
^猜测那是不对的。
答案 0 :(得分:4)
这样可以解决问题:
<span class="commentLnk"><?php comments_popup_link('Leave a Comment', '1 Comment', '% Comments'); ?></span>
或者,该函数还接受第四个参数,该参数将用作类:
<?php comments_popup_link('Leave a Comment', '1 Comment', '% Comments', 'commentLnk'); ?>
答案 1 :(得分:3)
您可以将自己的CSS样式类添加到评论链接。
comments_popup_link('发表评论','1评论','%评论','cssclass');
正如commands_popup_link的WordPress API文档中所述。