我正在尝试使用WP的自定义帖子类型创建一个论坛系统-两种帖子类型作为主题/回复和一种论坛分类法。
我为主题帖子类型创建了一个单一的模板,在其中我添加了一个回复表单。问题是,当我提交表单时,我得到了404页。
这是表单模板:
<div class="topic-reply-form">
<form method="post" name="topic-reply-form" class="topic-reply-form clear-block" action="<?php echo home_url(\'/\'); ?>">
<p><?php _ae("Add reply"); ?></p>
<fieldset>
<textarea id="reply-content" name="content" cols="50" rows="6"></textarea>
<input type="hidden" name="topic" value="<?php the_ID(); ?>" />
<?php wp_nonce_field(\'new-topic-reply\'); ?>
<input type="submit" value="Publish" id="reply-submit" name="reply-submit" />
</fieldset>
</form>
</div>
你知道为什么会这样吗?