• <ul>
    <?php
    	query_posts(array(
    	'post_type' => 'scooter_range',
    	'showposts' => 10
    	) );
    	?>
            <?php do_action('show_beautiful_filters'); ?>
    	<?php while (have_posts()) : the_post(); ?>
    
    <li>
    	<?php the_post_thumbnail(); ?>
            <h2><a>"><?php the_title(); ?></a></h2>
            <?php the_excerpt(); ?>
            </li>
    <?php endwhile;?>
    
    and also i have 3 taxonomies for this post type.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘Its not filtering where am i wrong ?’ is closed to new replies.