Custom post type: “transition_post_status” action get title and other fields
I’ve come up with my own solution. I used the publish_post action instead of the transition_post_status action. $this->loader->add_action( ‘publish_cursussen’, $plugin_admin, ‘save_cursus_meta’, 10, 2); The problem before was the data not being saved yet.. with this new functions i can get the ID and with that ID the title public function add_new_form( $cursus_title ){ $form_id = … Read more