'quotes', 'posts_per_page' => -1 );
$loop = new WP_Query( $args );
echo '
';
// The Loop
$first = true;
while ( $loop->have_posts() ) : $loop->the_post();
if ($first){
$class="active";
$first = false;
}else{
$class="";
}
echo '- ';
the_content();
if (get_field('author_of_the_quote')){
echo ''.get_field('author_of_the_quote').'';
}
echo '
';
endwhile;
echo '
';
// Reset Query
wp_reset_query();
*/
echo do_shortcode('[quote]');
?>