bbpress WordPress でコード/プログラムを使用して新しいトピックを作成したいと考えています。検索しましたが、関連するコードが見つかりませんでした。
1 に答える
3
これらの機能を試してください:
bbp_insert_topic(), bbp_insert_forum(), and bbp_stick_topic()
詳細については、次のように試すことができます:
$topic_data = apply_filters( 'bbp_new_topic_pre_insert', array(
'post_author' => $topic_author,
'post_title' => $topic_title,
'post_content' => $topic_content,
'post_status' => $topic_status,
'post_parent' => $forum_id,
'post_type' => bbp_get_topic_post_type(),
'tax_input' => $terms,
'comment_status' => 'closed'
) );
// Insert topic
$topic_id = wp_insert_post( $topic_data );
このコードはページにもありますplugin/bbpress/includes/funcion.php
。これがお役に立てば幸いです
于 2015-01-14T06:34:33.340 に答える