- Log in as Admin to the WordPress site
- Navigate to Appearance | Editor
- Click on template-tags.php in the right hand navigation with all of the pages.
- Search for the following line:
- echo '' . $posted_on . ' '; // WPCS: XSS OK
- If you don't want the date and the author to show, change this line to the following:
- //echo '' . $posted_on . ' '; // WPCS: XSS OK
- If you don't want to only show the date, change this line to the following:
- echo '' . $posted_on . ''; // WPCS: XSS OK
- If you don't want only show the author, change this line to the following:
- echo ' '; // WPCS: XSS OK
Thursday, August 25, 2016
How to remove the date and author of a post in the Affinity Theme
Ok, this one took me a while...
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment