List posts
<?php
global $post;
$args = array( 'post_type' => 'products', 'category' => 34 );
$myposts = get_posts( $args );
foreach ( $myposts as $post ) :
setup_postdata( $post ); ?>
<li>
<a href="<?php the_permalink(); ?>"><?php the_title();?></a>
</li>
<?php endforeach;
wp_reset_postdata(); ?>