| 开发者 | maurisrx |
|---|---|
| 更新时间 | 2026年5月7日 17:02 |
| PHP版本: | 7.4 及以上 |
| WordPress版本: | 6.9 |
| 版权: | GPLv2 or later |
| 版权网址: | 版权信息 |
You can add the following PHP code snippets to your active theme's functions.php or a snippet plugin:
add_filter( 'dwprp_registration_link', function() { return '<span class="dwprp-registration-link">Your custom registration link text</span>' } );
You can add the following PHP code snippets to your active theme's functions.php or a snippet plugin:
add_filter( 'dwprp_registration_redirect_url', function() { return site_url( '/your-custom-registration-page' ); } );
You can add the following CSS to your active theme's style.css or a snippet plugin:
.dwprp-registration-link { display: none; }
dwprp_registration_link, dwprp_registration_redirect_url.