'post',
'category_name' => 'word-roots-english',
'posts_per_page' => 100
);$query = new WP_Query($args);if ($query->have_posts()) :
echo '
';
while ($query->have_posts()) : $query->the_post();
?>
';
wp_reset_postdata();
else :
echo 'No posts found in the Word Roots category';
endif;
?>