Fatal error: Cannot use object of type WP_Query as array in path/class-wp-query.
-
Can anyone identify what is causing this error? https://imgur.com/EyJszpP
$post_type = 'colours'; $taxonomies = get_object_taxonomies( array( 'post_type' => $post_type ) ); foreach( $taxonomies as $taxonomy ) : $terms = get_terms( $taxonomy ); foreach( $terms as $term ) : ?> <?php echo $term->name; ?> <?php $args = array( 'post_type' => $post_type, 'posts_per_page' => -1, //show all posts 'tax_query' => array( array( 'taxonomy' => $taxonomy, 'field' => 'slug', 'terms' => $term->slug ) ) ); $posts = new WP_Query($args); if( $posts->have_posts() ): while( $posts->have_posts() ) : $posts->the_post(); ?> <?php the_post_thumbnail(); ?> <?php the_title(); ?> <?php the_field('colour_finish'); ?> <?php the_field('colour_code'); ?> <?php endwhile; endif; ?> <?php endforeach; endforeach; ?>
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Fatal error: Cannot use object of type WP_Query as array in path/class-wp-query.’ is closed to new replies.