
The easiest and simplest way to prevent the post date from appearing in WordPress without using plugins is to do it from the menu

Appearance => Customize => Additional CSS
and here write the following:
time.entry-date.published {
display: none;
}
And now we just need to Publish
With this we prevent the publication date from appearing in the posts.
