WordPress get tags in “publish_post” hook
if you want to get all selected tag in “publish_post” try below code. it will give you selected tag from post. remove wp_die(“all Tags”); after verify that you can get proper tags on publish post. add_action( ‘publish_post’, ‘post_published_notification’, 10, 2 ); function post_published_notification( $ID, $post ) { $all_tags = $_POST[‘tax_input’][‘post_tag’]; if ( $all_tags ) { … Read more