我还没有尝试重力表单插件,但如果您使用wp_insert_post
函数插入新帖子,只需使用“post\\u摘录”。
example:
$new_post = array(
\'post_title\' => \'Post Title\',
\'post_content\' => \'Post Content\',
\'post_status\' => \'publish\',
\'post_excerpt\' => $custom_excerpt_field
);
wp_insert_post($new_post);
我不确定我是否完全理解你的问题,所以我误解了一些东西,请让我知道。。