在WordPress中提交以下自定义表单时,系统会发送到index.php
而不是操作中指定的php页面。为什么会发生这种情况以及如何解决?
代码:
<form action="<?php bloginfo('template_url'); ?>/signincode.php" method="POST" id="form2">
答案 0 :(得分:0)
您使用的是paren和child主题吗? 而不是bloginfo('template_url')尝试
<?php echo get_template_directory_uri(); ?>
http://codex.wordpress.org/Function_Reference/get_template_directory_uri