2014-05-23 98 views
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

感謝您的任何幫助。

回答

0

我將完整的comment_form函數複製到我的functions.php中,重命名它,修改它幷包含新函數而不是舊函數。