If you use WordPress for a Company or other Organisations, you want perhaps customize the Meta Data Tags on Posts.
Most Sites on Net describe to hide all metadata, BUT this can run your CMS into Problems on Ranking, cause the Search Engines can’t pull the date of a Post.
If not current it’s pushed back to nirvana.. and your work lost value.
Solution: Show only Dates hide the Authors for wp-login.php attacks. Edit with a Texteditor the style.css of your theme and search:
.entry-meta { display: block ; }
Change to:
this insert date..
.post .entry-meta { display: block !important; }
this hide autor and the “by”
.author { display:none; }
this hide autor and the “by”
.single .byline, .group-blog .byline { display: none; }
Result:
…happy blogging..