Show latest X questions in theme template?
No shortcode but you can try this:
<div id="anspress" class="home-qs-list">
<?php $questions = ap_get_questions( array( 'showposts' => 10 ) ); ?>
<?php if ( $questions->have_posts() ) : ?>
<div class="ap-questions">
<?php
/* Start the Loop */
while ( $questions->have_posts() ) : $questions->the_post();
ap_get_template_part('content-list');
endwhile;
?>
</div>
<?php endif; ?>
</div>
bump?