Covert page to post
-
Hey @sillybean!
I use your plugin in my project.
when I convert pages to post, the new posts can set category or categories I chose.my setting is:
old_post_type: page
new_post_type: post
convert_cat: -1
page_parent: 4267
post_category[]: 21It return WP_Error. So I edit your file convert-post-types.php in line 167:
— wp_set_post_terms( $post->ID, $_POST[‘post_category’], ‘post_category’, false );
++ wp_set_post_categories( $post->ID, $_POST[‘post_category’], false );
result is ok.
- The topic ‘Covert page to post’ is closed to new replies.