Problem with saving post terms
-
Hi,
I have a problem with saving terms in post. I creating post in php like this
`
$newPost[‘post_title’] = “sample name”;
$newPost[‘post_excerpt’] = “sample excerpt”;
$newPost[‘post_content’] = “sample content”;
$newPost[‘post_status’] = ‘publish’;
$newPost[‘post_author’] = $author; //id of author
$newPost[‘post_type’] = ‘post’;
$newPost[‘post_category’] = //id of category depends on lang;
$ID = wp_insert_post($newPost);
pll_set_post_language($ID, $lang); //lang code declarated earlierin default page lang I have category but on other lang we haven’t any category. Could you give me any tips?
PHP8
WP6
Polylang 3.2.2
The topic ‘Problem with saving post terms’ is closed to new replies.