我有一个 php/mysql 网络应用程序。我想将其转换为 wordpress 插件。如何将一个 php 文件链接到另一个文件。例如我有插件 tw。tw.php 是它的索引文件,另一个文件名为 tw1.php。
第一页
/* plugin name:tw
plugin url:httpL://csr.estheticsolutions.com.pk
*/
//tell wordpress to register the demolistposts shortcode
add_shortcode("demo-list-posts", "demolistposts_handler");
function demolistposts_handler()
{
//run function that actually does the work of the plugin
$demolph_output = my_function();
//send back text to replace shortcode in post
return $demolph_output;
}
function my_function()
{
?>
<html>
<body>
<form action="tw1.php" method="post">
<input type="text" name="fname" >
<input type="submit" value="Submit" >
</form>
</body>
</html>
<?php
}
?>
第二页
<?php
$First_Name=$_POST['fname'];
echo $First_Name;
?>
当我在 tw.php 中提交值时,在 wordpress 文件夹中出现错误 tw1.php not found(404),然后我将文件 tw1.php 粘贴到该(wordpress)文件夹中并提交,发布的值进入没有 wordpress 主题的新页面.