You can remove the author and date from WordPress pages by following these primary methods, depending on your WordPress setup:
- Using the Block Editor (Full Site Editing or Block Themes):
- Using Theme/Customizer Options (for Popular Themes):
- Some themes, like GeneratePress and Blocksy, allow you to toggle author and date visibility through Customizer options:
- For Blocksy: Customize the post layout, and in the “Post Meta” section, hide the author and date individually.
- For Divi or similar builders: In the Divi theme options under Layout settings, you can toggle the author and date options.
- With a Plugin:
- Install and activate the “WP Meta and Date Remover” plugin from Plugins > Add New.
- This plugin hides the author and date from both the front end (what visitors see) and the back end (removes it from the page source for search engines as well).
- Once activated, author and date info should be gone automatically from all posts and pages using standard WordPress hooks.
- By Adding Custom CSS:
Notes and Limitations:
- On free WordPress.com plans, you may be limited in editing CSS or templates; for more control, a Premium plan or self-hosted WordPress (WordPress.org) is recommended.
- Hiding the author/date with CSS hides it visually but does not remove the data from the actual page source; search engines may still access this information.
- For content already indexed with author/date in search results, removing from display will not immediately update snippets in Google SERPs.
To remove the author and date from all WordPress pages (and posts) when using the Divi theme, use Divi’s built-in options:
- Go to your WordPress Dashboard and navigate to Divi > Theme Options.
- Click on the Layout tab.
- Under the Single Post Layout section, you will see toggles or checkboxes for meta items like Author and Date—simply uncheck these or click them to gray them out.
- Save your changes. This will remove the author and date from the front end of all posts and pages where Divi displays them.
If you are using the Divi Blog module, you can also customize display settings for Author and Date:
- In the Blog module settings, go to the Content > Elements section.
- You’ll see toggles for Author and Date; disable them as needed.
Alternatively, you can use a plugin such as “WP Meta and Date Remover,” which removes author/date info from all supported post types without editing code.
If you still see author/date on some custom post types or unusual layouts, you may need to add custom CSS:
css.entry-meta .byline,
.entry-meta .posted-on {
display: none !important;
}
Add this CSS in Appearance > Customize > Additional CSS.
Divi-specific settings generally provide cleaner and more robust control than CSS or plugins, so always check those first.
To disable comments in Divi, you can use several methods depending on whether you want to disable them globally or selectively:
- Divi Theme Options (for posts):
- WordPress Discussion Settings (global):
- Disable Comments Plugin (recommended for complete removal):
- Disable Comments on an Individual Page or Post: