testimonialswidget_widget


$paged, ‘posts_per_page’ => 10, ‘orderby’ => DESC, ‘post_type’ => Testimonials_Widget::pt );
// The Query
query_posts( $args );
// The Loop
while ( have_posts() ) : the_post();
// do your thing…
endwhile;
?>