wordpress中的主题目录路径

时间:2012-05-01 17:37:08

标签: wordpress

我看到这个网站是为了获取文件主题的路径:http://codex.wordpress.org/Function_Reference/get_bloginfo

我有一个表单(文件register.php),它将帖子发送到同一目录中的文件(register_proc.php)。

<form id = "form" name = "form" method = "post" action = "<?php echo get_option ('template_url');? > /register_proc.php ">

这两个文件位于:wp-content / themes / theme_name。

但是当我在浏览器中提交链接时是“http://127.0.0.1/register_proc.php”,它说没有找到该文件。为什么呢?

1 个答案:

答案 0 :(得分:2)

您希望get_bloginfo('template_url')代替get_option('template_url')

相关问题