Last active
July 1, 2016 11:24
-
-
Save morgyface/7db01de43a8014aa3e89b8763507c43c to your computer and use it in GitHub Desktop.
WordPress | Custom "Edit" link visible only by administrators
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style> | |
a.edit {display:inline-block; text-transform:uppercase; color:#FFF; background-color:#000; padding:1em 2em; border-radius:0.1em; margin:2em; clear:both} | |
</style> | |
<?php | |
if ( current_user_can('manage_options') ) { | |
$editlink = get_edit_post_link(); | |
echo '<a href="' . $editlink . '" class="edit">Edit</a>'; | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment