为什么要使用gravity post如果你只想做post add/insert+post\\u meta(假设在前端),我们可以做,只要我们给注册用户一定的功能。我们可以通过为用户创建自定义角色以添加到特定的自定义帖子类型来实现这一点。对于电子邮件通知,您可以使用本机wp\\u mail on wp\\u insert\\u post功能(logged\\u in)
$orderpost = array(
\'post_title\' => $title,
\'post_status\' => \'publish\', // Choose: publish, preview, future, etc.
\'post_type\' => \'item-order\' , // Use a custom post type if you want to
);
$the_inserted = wp_insert_post($orderpost); // Pass the value of $post to WordPress the insert function
post成功后(“\\u inserted=id of‘item order’”),我们可以创建诸如add\\u post\\u meta、update\\u post\\u meta、wp\\u mail或wp\\u redirect等功能
干杯:-)