Hi,
I have to update post categories on save. I use
add_action( 'save_post', 'saving' );
code, and inside the functions i tryed a lot of built-in wordpress functions such as:
wp_set_post_categories,
wp_set_object_terms,
wp_update_post
Still nothing. After the page is reloaded, categories are always the same. Are there any other functions to set categories to a specified post on save?
Thanks.