Skip to content

Instantly share code, notes, and snippets.

@shoutershub
Last active December 7, 2017 12:04
Show Gist options
  • Save shoutershub/c989dc6130080d93e988b12cb24d6f39 to your computer and use it in GitHub Desktop.
Save shoutershub/c989dc6130080d93e988b12cb24d6f39 to your computer and use it in GitHub Desktop.
WordPress - Add custom edit post link
<?php if(current_user_can('administrator')){ ?>
<a href="<?php bloginfo('url');?>/wp-admin/edit.php?p=<?php the_ID(); ?>">Edit Post</a>
<?php } ?>
}
@shoutershub
Copy link
Author

removed space between < ?php the_ID(); ?> - and things worked perfectly

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment