0
正如標題所示,我想修改或自定義cancel_comment_reply_link
而不編輯/wp-includes/comment-template.php
。自定義cancel_comment_reply_link WordPress
在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
?
感謝您的任何幫助。