0

我目前正在尝试设计一个 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'); ?>

^ 猜测这根本不对。

4

2 回答 2

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'); ?>
于 2013-01-16T22:36:48.020 回答
3

您可以将自己的 CSS 样式类添加到评论链接。

comments_popup_link('发表评论', '1 Comment', '% Comments', 'cssclass');

如commands_popup_link的 WordPress API 文档中所述。

于 2013-01-16T22:38:15.400 回答