Deprecated: Function get_currentuserinfo is deprecated since version 4.5.0! Use wp_get_current_user() instead. in /var/www/html/wp-includes/functions.php on line 5383
Hello,
I would like to erase these values on my posts:
Date, Author, Comment icon (I won’t have comments on my posts)
I would also like to erase the whole “Comments closed” line, for the same reason.
How could I do that?
Thank you very much!
Fran
Removing the post meta information on blog has not been envisaged as a back-end setting, yet you can achieve that via CSS, by adding this code into the theme’s “style.css” file:
.post-meta { display: none; }
I highly recommend doing this (and other customizations) via a child theme.