Changeset 13193
- Timestamp:
- 02/09/2024 02:34:25 AM (10 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/class-plugin-directory.php
r13192 r13193 855 855 856 856 // Author archives by default list plugins you're a contributor on. 857 $wp_query->query_vars['tax_query'] = array( 858 'relation' => 'OR', 857 $wp_query->query_vars['tax_query']['author'] = array( 859 858 array( 860 859 'taxonomy' => 'plugin_contributors', … … 862 861 'terms' => $user, 863 862 ), 863 'relation' => 'OR', 864 864 ); 865 865 … … 867 867 // Plugin Reviewers also see plugins you're a committer on here. 868 868 if ( $viewing_own_author_archive ) { 869 $wp_query->query_vars['tax_query'][ ] = array(869 $wp_query->query_vars['tax_query']['author'][] = array( 870 870 'taxonomy' => 'plugin_committers', 871 871 'field' => 'slug',
Note: See TracChangeset
for help on using the changeset viewer.