Vantage – Remove dates in comment section
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
The topic ‘Vantage – Remove dates in comment section’ is closed to new replies.
The topic ‘Vantage – Remove dates in comment section’ is closed to new replies.
(@thedigger0)
7 years ago
Hi All,
I know there are a few articles around on removing dates from the comment section of WordPress and I followed them. Add the following code to the Function.php section
// Remove comment date
function wpb_remove_comment_date($date, $d, $comment) {
if ( !is_admin() ) {
return;
} else {
return $date;
}
}
add_filter( ‘get_comment_date’, ‘wpb_remove_comment_date’, 10, 3);
// Remove comment time
function wpb_remove_comment_time($date, $d, $comment) {
if ( !is_admin() ) {
return;
} else {
return $date;
}
}
add_filter( ‘get_comment_time’, ‘wpb_remove_comment_time’, 10, 3);
But this has not worked for me. Can anyone help me with this problem and give me step by step instructions.
Thanks in advance.
Rachel