My File

‘;

// $the_query->query(‘post_type=wpsc-product&showposts=100&order_by=author’);
// ‘tag_slug__in’ => array( ‘mp3s’),

$args = array(‘post_type’ => ‘wpsc-product’,
‘posts_per_page’ => 100,
‘wpsc_product_category’ => ‘mp3s’,
‘orderby’ => ‘title’,
‘order’ => ‘ASC’);

// The Query
$the_query = new WP_Query( $args );

// The Loop
while ( $the_query->have_posts() ) : $the_query->the_post();
echo ‘

‘;
// echo ‘edit‘;
echo ‘‘ . get_the_title() . ‘ ‘;
wpsc_add_to_cart_button( get_the_ID() ) ;
echo ‘

‘;
endwhile;

// Reset Post Data
wp_reset_postdata();

echo ‘

‘;

?>

Leave a Reply