bartulans
7/14/2016 - 11:57 AM

List posts

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