你有手动编码的主题吗?不久前,我为一个朋友做了一个主题,而不是任何插件、costum帖子类型等。我手动创建了一个页面,并制作了一个注册表单。我的表单是这样设置的:
PHP代码的开始!
$to = \'[email protected]\';
$subject = \'Your desired subject\';
$option1= $_POST[\'option1\'];
$option2= $_POST[\'option2\'];
$option3= $_POST[\'option3\'];
$body = <<< EMAIL
The desired message that will be sent to the given email.
Option 1: $option1
Option 2: $option2
Option 3: $option3
EMAIL;
$headers = "From: $email";
if($_POST) {
mail($to, $subject, $body, $header);
}
END OF PHP CODE!
<label for="option1">Option 1</label> <br>
<input type="text" name="option1" id="option1" placeholder="Option 1" />
<label for="option2">Option 2</label> <br>
<input type="text" name="option2" id="option2" placeholder="Option 2" />
<label for="option3">Option 3</label> <br>
<input type="text" name="option2" id="option3" placeholder="Option 3" />