How to Remove all Instances of edit_post_link

Can someone please assist with how to remove from my theme, whilst in author mode, the edit_post_link (Edit link), throughout all my pages. Which php files in the Twenty Eleven theme (WordPress v3.2) do I need to comment out to no longer display this edit link?

I realise that you only see this during author mode but would like to know how to remove altogether.

Thanks.

5 s
5

It’s the edit_post_link() function. You’ll find lines like the following, that you need to comment out:

// from /twentyeleven/content-intro.php
edit_post_link( __( 'Edit', 'twentyeleven' ), '<span class="edit-link">', '</span>' );

Leave a Comment