Title: nuclearscott's Replies | WordPress.org

---

# nuclearscott

  [  ](https://wordpress.org/support/users/nuclearscott/)

 *   [Profile](https://wordpress.org/support/users/nuclearscott/)
 *   [Topics Started](https://wordpress.org/support/users/nuclearscott/topics/)
 *   [Replies Created](https://wordpress.org/support/users/nuclearscott/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/nuclearscott/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/nuclearscott/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/nuclearscott/engagements/)
 *   [Favorites](https://wordpress.org/support/users/nuclearscott/favorites/)

 Search replies:

## Forum Replies Created

Viewing 1 replies (of 1 total)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Remove timestamp, author and meta](https://wordpress.org/support/topic/remove-timestamp-author-and-meta/)
 *  [nuclearscott](https://wordpress.org/support/users/nuclearscott/)
 * (@nuclearscott)
 * [17 years, 5 months ago](https://wordpress.org/support/topic/remove-timestamp-author-and-meta/#post-1033485)
 * I played around with this a little and couldn’t get the is_single to work either.
   A work around I found was to create a new category, add the post you want to 
   that category and then do something similiar to before but change it to in_category.
   This way might be better since you can add other posts to that category in the
   future instead of hard coding it.
 *     ```
       <?php if (in_category('3')) { ?>
   
       //nothing happens
   
       <?php } else { ?>
   
       // the code for you meta info
   
       <?php } ?>
       ```
   
 * Let me know if this works. I am not real familiar with word press yet so I could
   be way off here.
 * -Scott

Viewing 1 replies (of 1 total)