My custom query works, but in debugging mode I get this error:
Notice: Undefined offset: 0 in /storage/content/24/150624/mydomain.com/public_html/wp/mysite/wp-includes/query.php on line 2232
This is what my query looks like:
<?php $term = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) ); ?>
<?php
global $post;
$args = array(
'tax_query' => array(
array(
'taxonomy' => 'machinecategory',
'terms' => $term,
'field' => 'slug',
'operator' => 'IN'
)
),
'posts_per_page' => -1,
'post_type' => 'machine',
);
$my_query = new WP_Query($args); ?>
<?php if ($my_query->have_posts()) : ?>
<?php while ($my_query->have_posts()) : $my_query->the_post(); ?>
<?php the_title();?>
<?php endwhile; ?>
<?php endif;?>
<?php wp_reset_query(); ?>
What could be wrong?
get_term_by
returns an object, try passing$term->slug
to your query instead.