Skip to content

Instantly share code, notes, and snippets.

@yxod
Last active July 9, 2024 14:11
Show Gist options
  • Save yxod/445a6d6d343a61a56a2a1cc82fa58a1f to your computer and use it in GitHub Desktop.
Save yxod/445a6d6d343a61a56a2a1cc82fa58a1f to your computer and use it in GitHub Desktop.
add edit url
//get edit link
function get_edit()
{
if (current_user_can('editor') || current_user_can('administrator')) {
echo '<a target="_blank" href="' . get_edit_post_link(get_the_ID()) . '" class="edit-post-link dashicons dashicons-edit" title="Edit project"></a>';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment