I am working on anew blog. I am logged in as administrator, and above every post there is a option to ‘edit this entry’.

Can I have WordPress set up so that even is I am logged in as administrator, I will still view the front end of the website as if I was not logged in. This was I can see how the user would see the page.

One option is to just view the website in another browser, but I guess there has to be another page.

6 Answers
6

See this related question. You should be able to add this code to your themes functions.php

   add_filter( 'edit_post_link', '__return_false' );

Tags:

Leave a Reply

Your email address will not be published. Required fields are marked *