Remove the Date From WordPress Post
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our W3Make Forum to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
I can remove the date and time from WordPress comments by following these steps:
1. Log in to the WordPress website and go to Appearance > Theme Editor.
2. From the Theme Files list on the right, select comments.php.
3. Look for the following code :
<div class=”comment-meta commentmetadata”><a href=”<?php echo esc_url( get_comment_link( $comment->comment_ID ) ); ?>”>
<?php
/* translators: 1: date, 2: time */
printf( __( ‘%1$s at %2$s’ ), get_comment_date(), get_comment_time() ); ?></a><?php edit_comment_link( __( ‘(Edit)’ ), ‘ ‘, ” ); ?>
4. Remove the code between the <div> and </div> tags.
5. Click the Update File button to save the changes.
After completing these steps, the date and time will no longer appear in the comments section of your WordPress website.