Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.
Warning: Array to string conversion in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 825
Warning: foreach() argument must be of type array|object, string given in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 830
Warning: Array to string conversion in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 825
Warning: foreach() argument must be of type array|object, string given in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 830
Warning: Array to string conversion in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 825
Warning: foreach() argument must be of type array|object, string given in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 830
Warning: Array to string conversion in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 825
WP_USERCREATESPOST::get_recipes_term_matches( $required_post_term, $required_post_taxonomy, $post )
Identify recipes that match criteria based on term
Contents
Warning: foreach() argument must be of type array|object, string given in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 830
Warning: Array to string conversion in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 825
Warning: foreach() argument must be of type array|object, string given in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 830
Warning: Array to string conversion in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 825
Warning: foreach() argument must be of type array|object, string given in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 830
Warning: Array to string conversion in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 825
Parameters Parameters
- $required_post_term
(Required)
- $required_post_taxonomy
(Required)
- $post
(Required)
Return Return
(array)
Source Source
File: src/integrations/wp/triggers/wp-usercreatespost.php
private function get_recipes_term_matches( $required_post_term, $required_post_taxonomy, $post ) { $matched = array(); $post_id = $post->ID; foreach ( $this->matched_recipes as $recipe_id => $recipe ) { foreach ( $recipe['triggers'] as $trigger ) { $trigger_id = absint( $trigger['ID'] ); if ( ! isset( $required_post_term[ $recipe_id ] ) ) { continue; } if ( ! isset( $required_post_term[ $recipe_id ][ $trigger_id ] ) ) { continue; } // if any term if ( '0' === (string) $required_post_term[ $recipe_id ][ $trigger_id ] ) { $matched[] = $recipe_id; continue; } if ( ! isset( $required_post_taxonomy[ $recipe_id ] ) ) { continue; } if ( ! isset( $required_post_taxonomy[ $recipe_id ][ $trigger_id ] ) ) { continue; } // if the term is specific then tax and post type are also specified $post_terms = $this->get_taxonomy( $post_id, $required_post_taxonomy[ $recipe_id ][ $trigger_id ] ); if ( empty( $post_terms ) ) { continue; } // check if the post has the required term $post_term_ids = array_map( 'absint', array_column( $post_terms, 'term_id' ) ); if ( ! in_array( absint( $required_post_term[ $recipe_id ][ $trigger_id ] ), $post_term_ids, true ) ) { continue; } $matched[] = $recipe_id; // Specific Term $term = get_term( $required_post_term[ $recipe_id ][ $trigger_id ] ); if ( ! array_key_exists( $term->term_id, $this->terms_list[ $recipe_id ][ $trigger_id ] ) ) { $this->terms_list[ $recipe_id ][ $trigger_id ][ $term->term_id ] = $term->name; } } } return array_unique( $matched ); }
Expand full source code Collapse full source code View on Github