Add extra custom taxonomies after insert_post?
-
Hi Michael,
Thank you so much for the plugin and it works fine with all other request except one and I was hoping if you can give me a hand to resolve this one.
I understand the custom taxonomies is not support in this plugin and that’s due to the function wp_insert_post(). However, I have a thought to use wp_set_object_terms right after the post is been created to insert these taxonomies. The condition for this to work is I know how many and what are the custom taxonomies are. So, I modified bit of the FormToPost_Plugin.php and have the code like following:
===========================================================
// Create the post
//error_log(print_r($post, true)); // debug
$post_id = wp_insert_post($post);
wp_set_object_terms($post_id,$location,’location’);
wp_set_object_terms($post_id,$sale_rental,’sale_rental’);
wp_set_object_terms($post_id,$price,’price’);
============================================================
What I am struggling with in here is how to get the CF7’s taxonomies values.
If you can give me a hand on how to get the correct values of these taxonomies values from the $submission or $cf7 will be highly appreciated.And let’s hope this will work as plan, finger cross. ??
Regards,
Phil
- The topic ‘Add extra custom taxonomies after insert_post?’ is closed to new replies.