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联系起来的主要内容,如果未能解决你的问题,请参考以下文章

Wordpress:在jQuery按钮上,单击Contact Form 7菜单中的预选择选项

Wordpress 联系表 7 插件提交到特定页面

Wordpress - PHP:如何将表单中的选定数据放入文本区域?

数据不使用php通过WordPress表单进入mysql数据库

如何根据wordpress中的当前帖子自动选择一个值?

将用户重定向到 PHP Wordpress 中的目标页面