Site Cloner PHP Script
Bargain Hunter PHP Script
Job Hunter PHP Script
Site Login and Access Control PHP Script

WordPress Posted In

Often, as a WordPress sites nears to completion, you have a few classes and functions that display text for which you want removed. For one, you may want to disable comments for one or more pages or posts. Opening a page or post is all that is required to disable comments if the checkbox is ‘not selected’.

Another area which may need editing is the article information. Here is a snippet of default text that will appear for a post.

Posted on July 25, 2011 by webauthor
Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!
Posted in Uncategorized | 1 Comment

To remove the information under a post, you must edit the php in functions.php and loop.php.

For example, with some templates, you can remove the contents within the function lightningbolt_posted_on() {}.

Editing loop.php will help remove any other undesired text and will allow for a clean article and title.

By examining the css ids, classes and html text, you can find where to disable the appropriate output in the php classes and functions.