Xoá thẻ H3 tại mục reply bình luận của WordPress 1
Wordpress Snippets

Xoá thẻ H3 tại mục reply bình luận của WordPress

How do we remove the H3 tag for the reply-title I.D

add_filter( ‘comment_form_defaults’, ‘custom_reply_title’ );
function custom_reply_title( $defaults ){
$defaults[‘title_reply_before’] = ‘<span id=”reply-title” class=”comment-reply-title”>’;
$defaults[‘title_reply_after’] = ‘</span>’;
return $defaults;
}

Avatar of jamesblackvn

Tui là jamesblackvn!

Trả lời

Email của bạn sẽ không được hiển thị công khai. Các trường bắt buộc được đánh dấu *

Website này sử dụng Akismet để hạn chế spam. Tìm hiểu bình luận của bạn được duyệt như thế nào.