我在我的函数php中使用以下代码,以便在联系表单7提交后下载。但它不起作用
//contact form 7 Download white paper//
add_action( \'wp_footer\', \'redirect_cf7\' );
function redirect_cf7() {
?>
<script type="text/javascript">
document.addEventListener( \'wpcf7mailsent\', function( event ) {
if ( \'4265\' == event.detail.contactFormId ) { // Sends sumissions on form 4265 to the first thank you page
location = \'/wp/wp-
content/uploads/2018/06/file.pdf\';
} else if ( \'4266\' == event.detail.contactFormId ) { // Sends submissions on form 1070 to the second thank you page
location = \'/wp/wp-
content/uploads/2018/06/file2.pdf\';
}
else {
//do nothing
}
}, false );
</script>
<?php
}
你知道为什么它不起作用吗?
顺致敬意,