Insert post programmatically using qtranslate
-
Hi,
I’m using this function to insert a post:
`$post_id = wp_insert_post(
array(
‘post_title’ => $title,
‘post_content’ => $content,
‘post_status’ => ‘publish’,
‘post_author’ => 1,
‘post_category’ => 80
)
);I want it to be included only in one language and leave the others empty, but the $title is inserted in every language.
Do you have any idea how to do that?
Thanks a lot
- The topic ‘Insert post programmatically using qtranslate’ is closed to new replies.