我有一个前端表单,允许用户提交帖子。
这是我在提交帖子时存储数据的方式:
if ( isset( $_POST[\'submitted\'] )) {
$post_information = array(
\'post_title\' => wp_strip_all_tags( $_POST[\'postTitle\'] ),
\'post_content\' => $_POST[\'postContent\'],
\'post_type\' => \'post\',
\'post_status\' => \'publish\'
);
$new_post = wp_insert_post( $post_information );
除非我浏览仪表板并单击更新按钮,否则帖子不会显示在我的帖子页面中。以下是我查询帖子的方式:
$args = array(
\'posts_per_page\' => 5,
\'paged\' => $paged,
\'meta_query\' => array(
array( \'key\' => \'_wti_like_count\',\'value\' => 5, \'compare\' => \'<=\',\'type\' => \'numeric\')
)
);
query_posts( $args );
如何使我提交的帖子自动发布?