我正在尝试制作一个包含多个字段的表单应用程序来编写信息。
现在正在处理代码。
select avg(Reading)
from(select Reading
from Readings
Order By Rowid desc
limit 10);
我有更多字段,这些字段由名称$type = trim($_POST['Type']);
$new_post = array(
'post_title' => $title,
'post_content' => $_POST['description'],
'post_parent' => 65,
'post_status' => 'publish',
'post_type' => 'topic'
);
$topic_meta = array(
'forum_id' => $new_post['post_parent']
);
$topic_id = bbp_insert_topic($new_post, $topic_meta);
wp_redirect(get_permalink($topic_id));
exit;
和customfieldone
记录,我想将其添加到从表单创建的主题中。
使用上面的代码,它只会将customfieldtwo
中的文字发布到主题中。