

Slash Edit when editing a post on the front-end.
Slash Edit saves you time by adding a simple admin shortcut to WordPress that lets you edit posts and pages quickly by adding /edit to almost any URL.
Instead of navigating through wp-admin or relying on the admin bar, just append /edit and go straight to the edit screen.
https://yoursite.com/about/edit
This makes it easy to:
Slash Edit is built for speed. Whether you’re a developer, editor, or site owner, it gives you a consistent shortcut to edit posts and pages without relying on the admin bar.
Stop sharing links like:
https://yourdomain.com/wp-admin/post.php?post=123&action=edit
Instead, send a clean edit page shortcut:
https://yourdomain.com/about/edit
Perfect for clients and teams who need a simple way to quick edit content or for email senders who mangle URLs.
Slash Edit works across your entire site:
If you are not logged in, you will be prompted to log in and then redirected to the correct edit screen.
When a WordPress Playground or demo site is generated, you don’t always know the final ID or URL of an item. With Slash Edit installed, give them a relative link such as:
/about/edit
If you have theme demos you can take your users right to the customizer or Full Site Editor with a shortcut: /theme/edit
Content Editing
https://yourdomain.com/edithttps://yourdomain.com/about/edithttps://yourdomain.com/blog/your-blog-post/edithttps://yourdomain.com/resources/my-resource/edithttps://yourdomain.com/courses/new-course/lessons/new-lesson/editPost Types Archives
https://yourdomain.com/articles/edithttps://yourdomain.com/product/edit or https://yourdomain.com/shop/edithttps://yourdomain.com/downloads/editUsers
https://yourdomain.com/author/myuser/edithttps://yourdomain.com/users/edithttps://yourdomain.com/author/edithttps://yourdomain.com/authors/editTaxonomies
https://yourdomain.com/category/category-one/edithttps://yourdomain.com/tag/new-tag/edithttps://yourdomain.com/topics/hosting/edithttps://yourdomain.com/how-tos/topics/hosting/editTheme Editing
https://yourdomain.com/theme/editMultisite
https://mymultisite.com/site/edithttps://mymultisite.com/sites/editExample: Changing the Endpoint
Changes /edit to /editar. Make sure to flush permalinks after any endpoint changes.
<?php
add_filter( 'slash_edit_endpoint', function( $endpoint ) ) {
return 'editar';
}
Only users with Editor capabilities (or higher) can access edit screens.
Developers can customize access using filters:
slash_edit_capability_check slash_edit_can_edit/edit endpoint if needed