[BUG] Getting taxonomies
-
Hey there ??
It seems that the plugin is unable to get the taxonomies for a post because of
/core/includes/classes/class-wp-webhooks-pro-run.phpLine 3386
$tax_terms = wp_get_post_terms( 553, $taxonomies );
This specifically requests for post_id = 553 but the line should be$tax_terms = wp_get_post_terms( $post_id, $taxonomies );
as $post_id is declared in the function ironikus_trigger_post_create( $post_id, $post, $update ){
The same is true for line 3349 in the function
public function ironikus_trigger_post_update( $post_id, $post, $update ){
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘[BUG] Getting taxonomies’ is closed to new replies.