开发者 | pixypuala |
---|---|
更新时间 | 2025年10月2日 23:00 |
PHP版本: | 8.1 及以上 |
WordPress版本: | 6.8 |
版权: | GPLv2 or later |
版权网址: | 版权信息 |
srpl_
), sanitized, and aligned with WordPress coding standards.wp_srpl_events
) with hashed IP for privacy.
Privacy
hash_hmac(sha256, ip, wp_salt('auth'))
./wp-content/plugins/
or install from WP.org.No. That plugin makes anonymous, expiring links. SRPL requires login for role/user modes and supports per‑email tokens. It also offers per‑link analytics and revoke‑all functionality.
Yes. All editable roles are available. You can also filter supported post types via srpl_supported_post_types
.
Yes. Add your CPT slug to the srpl_supported_post_types
filter:
add_filter('srpl_supported_post_types', function($post_types) {
$post_types[] = 'product'; // Add custom post type
return $post_types;
});
Yes! Our plugin works seamlessly with:
No. Links are opaque tokens; access is gated and previews are not discoverable by search engines.
A lightweight table wp_srpl_events
stores link id, post id, hashed IP, UA, user id (if logged), outcome, and timestamp. You can disable this in settings.
Yes, use the srpl_default_ttl_hours
filter:
add_filter('srpl_default_ttl_hours', function($hours) {
return 168; // 1 week
});
Very secure. Links use cryptographically strong tokens that are non-guessable. Email tokens are deterministic but secure, using your site's nonce salt.