2015-01-14 2 views
0

bbpress WordPress.I에서 코드를 사용하여 프로그래밍 방식으로 새 주제를 만들고 싶습니다. 관련 검색어를 찾지 못했지만 아무 관련도 찾지 못했습니다. 아무 도와도 도움이되지 않습니다. 감사합니다.bmspress에서 새로운 주제 만들기 WordPress

이 그가 할 수있는

$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 page.Hope이 코드를 찾을 수 있습니다 :이 같은 시도 할 수 있습니다 자세한 내용은

bbp_insert_topic(), bbp_insert_forum(), and bbp_stick_topic() 

:

답변

3

는 이러한 기능을보십시오 lp you

+0

감사합니다. 자세한 내용을 확인하겠습니다. – Adda

관련 문제