为什么不将自定义内容保存为单独的文件。
Example:
使用您的代码:
<div class="wrap">
<div class="leftcol">
<h3 class="usehd">TITLE</h3>
<div class="hd-div"></div>
<div class="use-content">CONTENT</div>
</div>
<div class="rightcol">
<div class="sideform">
<form name="usecase" id="usecase">
<label>Email</label><br />
<input type="text" name="email" class="txtinput" />
<br />
<label>Full Name</label><br />
<input type="text" name="fullname" class="txtinput" />
<br />
<label>Company Name</label><br />
<input type="text" name="company" class="txtinput" />
<br />
<label>Number of employees</label><br />
<select name="employeenum" class="useselect">
<option value="10">10</option>
<option value="100">100</option>
<option value="1000">1000</option>
<option value="9999">1000+</option>
</select>
<br />
<input type="submit" value="Submit" class="usecasesubmit" />
</form>
</div>
</div>
</div>
您可以将其另存为表单。php
然后在自定义模板中使用以下内容:
<?php
/*
Template Name: Use Case Template
*/
get_header(); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php the_content(); get_template_part(\'form\') ?>
<?php endwhile; else : endif; ?>
<?php get_footer(); ?>
使用代码get\\u template\\u part调用表单。php文件转换为模板文件。这样,如果表单是自定义post类型,则可以使用条件语句包含表单。
You wouldn\'t need the custom template if you use the conditional statement to call the form.php from an existing template.