正如标题所示,我想修改或自定义cancel_comment_reply_link
无需编辑/wp-includes/comment-template.php
.
中的代码comment-template.php
如下所示:
<h3 id="reply-title" class="comment-reply-title">
<?php comment_form_title( $args[\'title_reply\'], $args[\'title_reply_to\'] ); ?>
<small>
<?php cancel_comment_reply_link( $args[\'cancel_reply_link\'] ); ?>
</small>
</h3>
基本上,我想得到
cancel_comment_reply_link
超出
<h3>
和
<small>
-标记为
<div>
容器,但我真的不知道如何在不接触的情况下实现这一点
comment-template.php
.
有没有一个解决方案可以包含在我的主题中functions.php
?
谢谢你的帮助。
SO网友:Pmpr
虽然帖子上说,1 year ago
, 但也许有人需要知道怎么做,所以我会分享我的知识。
您可以创建一个名为comments.php
在活动主题的根目录中,并对其进行更改:
<h3>Comment form title</h3>
<p><?php cancel_comment_reply_link(); ?></p>
<form id="commentform" action="<?php echo site_url(); ?>/wp-comments-post.php" method="post">
<textarea name="comment" id="comment"></textarea>
<?php
comment_id_fields();
do_action(\'comment_form\', $post->ID);
?>
</form>