mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-04 12:22:24 +08:00
8 lines
299 B
Text
8 lines
299 B
Text
function project_dequeue_recaptcha() {
|
|
wp_dequeue_script( 'recaptcha-v3' );
|
|
wp_deregister_script( 'recaptcha-v3' );
|
|
wp_dequeue_script( 'et-core-api-spam-recaptcha' );
|
|
wp_deregister_script( 'et-core-api-spam-recaptcha' );
|
|
}
|
|
|
|
add_action( 'wp_print_scripts', 'project_dequeue_recaptcha' );
|