How do I remove the "Edit this entry" link at the bottom of each page?
How do I remove the "Edit this entry" link at the bottom of each page?
The Edit link should only be displayed to logged in users. A normal visitor would never see this link, however if you want to remove it all together look for the edit_post_link method in your theme's files and remove every instance of it.
For example in theme twentyten you would remove this line:
<?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?>
This topic has been closed to new replies.