like our Facebook Page

class=""> class="">class="">class="">

WordPress Blog Comments Date Remove Code

// 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);
Previous
Next Post »