web-dev-qa-db-ja.com

カスタムクエリは動作しますが、「Notice:Undefined offset:0 ...」というメッセージが表示されます。

私のカスタムクエリは機能しますが、デバッグモードではこのエラーになります。

Notice: Undefined offset: 0 in /storage/content/24/150624/mydomain.com/public_html/wp/mysite/wp-includes/query.php on line 2232 

これが私の質問のようなものです。

<?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(); ?>

何が間違っている可能性がありますか?

2
Johan Dahl

get_term_by はオブジェクトを返します。代わりに$term->slugをクエリに渡してみてください。

5
Milo