我得到了無限循環錯誤。我需要在帖子創建爲默認英語時使用德語插入帖子。 我用publish_post動作鉤捕捉英語發佈事件。但是,在創建德文文章時,publish_post鉤子也由wp_insert_post()函數執行。所以發生了infiniter錯誤。誰能幫忙?謝謝。以下是我使用的代碼。無限循環錯誤publish_post和wp_insert_post
add_action('publish_post', 'save_in_all_sites' );
function save_in_all_sites($post_id){
global $sitepress;
$my_post = array(
'post_title' => $post_title,
'post_content' => $post_content,
'post_status' => $post_status
);
$def_trid = $sitepress->get_element_trid($post_id);
$ru_post_id1 = wp_insert_post($my_post);
// insert the post in German language
$sitepress->set_element_language_details($ru_post_id1, 'post_post', $def_trid, 'de');
}
非常感謝你的極光。有效。 –