仅在当页面加载了 Contact Form 7 插件表单时,才加载 Google reCAPTCHA,这样做的好处是按需加载,不影响其他页面的加载性能。

1)找到 functions 文件,如主题名称为 ‘aimeesign’,一般情况下,路径如下

\wp-content\themes\aimeesign\functions.php

2)用代码编辑器打开找到的 functions.php 文件,复制下方的代码段到文件末尾,保存即可。

// Load Google reCAPTCHA v3 only when using Contact Form 7
add_action('wp_print_scripts', function () {
	global $post;
	if (!has_shortcode( $post->post_content, 'contact-form-7') ) {
		wp_dequeue_script( 'google-recaptcha' );
		wp_dequeue_script( 'wpcf7-recaptcha' );
	}
});