How to make Wordpress different for author than readers
There are legitimately good reasons to customize your author view of your Wordpress-powered blog: to trim the information that doesn’t apply and/or would not be interesting/relevant to readers.
In WP you can do this with code that looks like this in the template:
if($user_ID == ID) {
// show content only to ID
// you can find […]
