需要打印按我当前的分类法页面过滤的 post 吗?

need to print post filtered by my current taxonomy's page?

我需要打印所有 post 由我当前的分类法页面过滤的内容。 我可以使用哪个查询为当前页面分类过滤所有这些 post? 我正在尝试做一个动态的小部件,以用于更多具有不同类别的页面。 我希望有一个人可以帮助我 。谢谢 :) 我正在尝试使用此代码但不起作用...

 <?php
$args=array(
  'post_type' => 'post,
  'post_status' => 'publish',
);
$my_query = null;
$my_query = new WP_Query($args);
if( $my_query->have_posts() ) {
  while ($my_query->have_posts()) : $my_query->the_post(); ?>
    <p><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></p>
    <?php
  endwhile;
}
wp_reset_query();  // Restore global post data stomped by the_post().
?>

已解决:

<?php

 $term_slug = get_query_var( 'term' );
 $taxonomyName = get_query_var( 'taxonomy' );

  $the_query = new WP_Query( array(
    'post_type' => 'post',
    'tax_query' => array(
        array (
            'taxonomy' => $taxonomyName,
            'field' => 'slug',
            'terms' => $term_slug,
          )
        ),
      ));
  ?>