为什么WordPress中的自定义表单不会重定向到指定的操作?

时间:2011-12-09 02:53:43

标签: php wordpress

在WordPress中提交以下自定义表单时,系统会发送到index.php而不是操作中指定的php页面。为什么会发生这种情况以及如何解决?

代码:

<form action="<?php bloginfo('template_url'); ?>/signincode.php" method="POST" id="form2">

1 个答案:

答案 0 :(得分:0)

您使用的是paren和child主题吗? 而不是bloginfo('template_url')尝试

<?php echo get_template_directory_uri(); ?>

http://codex.wordpress.org/Function_Reference/get_template_directory_uri