

Erdo Draft Links panel in the Block Editor sidebar — generate, copy, and manage your link.
Erdo Draft Links works like Google Docs’ “Anyone with the link can view” — but for WordPress. Generate a secure link for any draft, private, or published post or page and share it with clients, reviewers, or collaborators. They can read the content without needing a WordPress account, without a password, and without you ever changing the post status.
Developers can add support for custom post types using the erdo_draft_links_supported_post_types filter:
add_filter( 'erdo_draft_links_supported_post_types', function( $types ) {
$types[] = 'product';
return $types;
} );
The full source code including build tools is included in the plugin’s assets/js/src/ directory.