comments.php keep comment date/time but remove date/time’s #hyperlink
To keep the date/time text, you have to do minor modification in comments.php just add call back argument in wp_list_comments function. <?php wp_list_comments( array( ‘callback’ => ‘custom_format_comment_listing’ ) ); ?> Then add Following code in your functions.php file. you can modification other html as per your design. <?php function custom_format_comment_listing($comment, $args, $depth) { $GLOBALS[‘comment’] = … Read more