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
WP_USERCREATESPOST::get_recipes_taxonomy_matches( $required_post_taxonomy, $post )
Identify recipes that match criteria based on taxonomy
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
Parameters Parameters
- $required_post_taxonomy
(Required)
- $post
(Required)
Return Return
(array)
Source Source
File: src/integrations/wp/triggers/wp-usercreatespost.php
private function get_recipes_taxonomy_matches( $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_taxonomy[ $recipe_id ] ) ) { continue; } if ( ! isset( $required_post_taxonomy[ $recipe_id ][ $trigger_id ] ) ) { continue; } // if any taxonomy if ( '0' === (string) $required_post_taxonomy[ $recipe_id ][ $trigger_id ] ) { $post_terms = $this->get_all_post_tax( $post_id, $post->post_type, $recipe_id, $trigger_id ); foreach ( $post_terms as $term ) { $this->terms_list[ $recipe_id ][ $trigger_id ][ $term->term_id ] = $term->name; } $matched[] = $recipe_id; continue; } // let's check if the post has any taxonomy in the selected taxonomy $post_terms = $this->get_taxonomy( $post_id, $required_post_taxonomy[ $recipe_id ][ $trigger_id ] ); if ( empty( $post_terms ) ) { continue; } $matched[] = $recipe_id; foreach ( $post_terms as $term ) { $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