As seen on the https://clicknathan.com blog:
How to Allow Subscribers to Delete Posts from the Front End while Still Blocking the Admin Area
Allow WordPress Authors to Delete their Posts from the Front End
Additionally, here is a simple script to put within the loop to display a delete link for anyone with the rights to edit posts:
[php]$url = get_bloginfo('url');
if (current_user_can('edit_post', $post->ID)){
echo '<a class="delete-post" href="'; echo wp_nonce_url("$url/wp-admin/post.php?action=trash&post=$id", 'delete-post_' . $post->ID);
echo '">Delete post</a>';
}[/php]Revisions
- April 10, 2018 @ 02:48:17 [Current Revision] by PeterLugg
- April 10, 2018 @ 02:48:17 by PeterLugg
Revision Differences
There are no differences between the April 10, 2018 @ 02:48:17 revision and the current revision. (Maybe only post meta information was changed.)
No comments yet.