Changeset 61650
- Timestamp:
- 02/16/2026 01:11:50 PM (2 weeks ago)
- Location:
- trunk
- Files:
-
- 2 edited
-
src/wp-includes/blocks.php (modified) (2 diffs)
-
tests/phpunit/tests/blocks/wpBlock.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/blocks.php
r61617 r61650 2661 2661 * @since 6.1.0 Added `query_loop_block_query_vars` filter and `parents` support in query. 2662 2662 * @since 6.7.0 Added support for the `format` property in query. 2663 2663 2664 * 2664 2665 * @param WP_Block $block Block instance. … … 2742 2743 $query['tax_query'] = array_merge( $query['tax_query'], $tax_query_back_compat ); 2743 2744 } 2744 if ( ! empty( $block->context['query']['taxQuery'] ) ) { 2745 $tax_query = array(); 2746 foreach ( $block->context['query']['taxQuery'] as $taxonomy => $terms ) { 2747 if ( is_taxonomy_viewable( $taxonomy ) && ! empty( $terms ) ) { 2748 $tax_query[] = array( 2749 'taxonomy' => $taxonomy, 2750 'terms' => array_filter( array_map( 'intval', $terms ) ), 2751 'include_children' => false, 2752 ); 2745 2746 if ( ! empty( $block->context['query']['taxQuery'] ) && is_array( $block->context['query']['taxQuery'] ) ) { 2747 $tax_query_input = $block->context['query']['taxQuery']; 2748 $tax_query = array(); 2749 // If there are keys other than include/exclude, it's the old 2750 // format e.g. "taxQuery":{"category":[4]} 2751 if ( ! empty( array_diff( array_keys( $tax_query_input ), array( 'include', 'exclude' ) ) ) ) { 2752 foreach ( $block->context['query']['taxQuery'] as $taxonomy => $terms ) { 2753 if ( is_taxonomy_viewable( $taxonomy ) && ! empty( $terms ) ) { 2754 $tax_query[] = array( 2755 'taxonomy' => $taxonomy, 2756 'terms' => array_filter( array_map( 'intval', $terms ) ), 2757 'include_children' => false, 2758 ); 2759 } 2753 2760 } 2754 } 2755 $query['tax_query'] = array_merge( $query['tax_query'], $tax_query ); 2761 } else { 2762 // This is the new format e.g. "taxQuery":{"include":{"category":[4]},"exclude":{"post_tag":[5]}} 2763 2764 // Helper function to build tax_query conditions from taxonomy terms. 2765 $build_conditions = static function ( $terms, string $operator = 'IN' ): array { 2766 $terms = (array) $terms; 2767 $conditions = array(); 2768 foreach ( $terms as $taxonomy => $tax_terms ) { 2769 if ( ! empty( $tax_terms ) && is_taxonomy_viewable( $taxonomy ) ) { 2770 $conditions[] = array( 2771 'taxonomy' => $taxonomy, 2772 'terms' => array_filter( array_map( 'intval', $tax_terms ) ), 2773 'operator' => $operator, 2774 'include_children' => false, 2775 ); 2776 } 2777 } 2778 return $conditions; 2779 }; 2780 2781 // Separate exclude from include terms. 2782 $exclude_terms = isset( $tax_query_input['exclude'] ) && is_array( $tax_query_input['exclude'] ) 2783 ? $tax_query_input['exclude'] 2784 : array(); 2785 $include_terms = isset( $tax_query_input['include'] ) && is_array( $tax_query_input['include'] ) 2786 ? $tax_query_input['include'] 2787 : array(); 2788 2789 $tax_query = array_merge( 2790 $build_conditions( $include_terms ), 2791 $build_conditions( $exclude_terms, 'NOT IN' ) 2792 ); 2793 } 2794 2795 if ( ! empty( $tax_query ) ) { 2796 // Merge with any existing `tax_query` conditions. 2797 $query['tax_query'] = array_merge( $query['tax_query'], $tax_query ); 2798 } 2756 2799 } 2757 2800 if ( ! empty( $block->context['query']['format'] ) && is_array( $block->context['query']['format'] ) ) { -
trunk/tests/phpunit/tests/blocks/wpBlock.php
r61519 r61650 839 839 840 840 /** 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 841 937 * @ticket 62014 842 938 */
Note: See TracChangeset
for help on using the changeset viewer.