Inserted Topic Has No Content
-
I have written a function to insert a post into a private member forum, but when I click on the topic it says it is empty?
$post_parent = 0;
$forum_id = 5485; // Membership Forum 5485$topic_data = array(
//’post_parent’ => $post_parent,
‘post_author’ => 1,
‘post_title’ => $output_title,
‘post_content’ => “<div class=’application-form’>$output_content</div>”,
‘comment_status’ => ‘closed’,
‘menu_order’ => 0
);$topic_meta = array(
‘forum_id’ => $forum_id
);$topic_id = bbp_insert_topic( $topic_data, $topic_meta );
bbp_stick_topic($topic_id , false);WP v5.5.1
BBP v2.6.5
BP v6.3.0
- You must be logged in to reply to this topic.