我正在尝试将以下代码添加到表单的操作部分中:
action="'.the_permalink().'?filename.php=1"
但这只会增加?filename.php=1
表单操作,并且在表单开始之前,the_permalink() 结果就打印在表单之外!
这是我的表格行:
form name="front_end_aa" method="POST" action="".the_premalink()."?assign-journalist=1"
the_permalink()
是 wordpress 中的一个函数,用于获取您正在单击的帖子的链接。
已解决:感谢@enenen 解决了这个问题:
将 PHP 的结果存储到变量中,并将变量附加到表单操作中,如下所示:
$permalink = get_permalink();
echo '<form name="front_end_aa" method="POST" action="'.$permalink.'?filename=1">