php 将没有表单的WordPress页面中的7个脚本和reCaptcha联系起来

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 将没有表单的WordPress页面中的7个脚本和reCaptcha联系起来相关的知识,希望对你有一定的参考价值。

// career posts and the page w/ ID 13 both have forms, 
// as long as we are not on one of those, we 
// dequeue CF7 and reCaptcha to remove the v3 badge

// add to functions.php

add_action('wp_print_scripts', function () {
    global $post;
    $is_career = (is_single() && $post->post_type == 'career');
    if (!$is_career && !is_page(array('13'))) {
        wp_dequeue_script('contact-form-7');
        wp_dequeue_script('google-recaptcha');
    }
});

以上是关于php 将没有表单的WordPress页面中的7个脚本和reCaptcha联系起来的主要内容,如果未能解决你的问题,请参考以下文章