mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-28 11:22:21 +08:00
6 lines
270 B
Text
6 lines
270 B
Text
add_filter( 'comment_form_defaults', 'leave_a_comment_title_tag' );
|
|
function leave_a_comment_title_tag( $defaults ){
|
|
$defaults['title_reply_before'] = '<p id="reply-title" class="comment-reply-title">';
|
|
$defaults['title_reply_after'] = '</p>';
|
|
return $defaults;
|
|
}
|