on_submit:window.location.href =" http://www.example/thanks/need_post_id_here";
我正在使用worpdpress并使用"联系表格7"提交联系表格按钮后,特别是将其重定向到感谢页面,但不显示特定的帖子ID。
我试过on_submit:window.location.href =" http://www.example.com/thanks/[_post_id]&#34 ;;但没有返回post id。
答案 0 :(得分:0)
女士,我们可以尝试wp_redirect()
代替window.location.href()
像这样的东西,
<?php
$location = add_query_arg( 'id', $id, 'yourlink' );
wp_redirect( $location, 301 );
exit;
?>