I have a category called "javascript" and it's limiting my list to only 4 entries?
<?php get_header(); ?>
<div class="container">
<div class="row">
<div class="decorate">
<h1>Javascript</h1>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<p><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></p>
<?php endwhile; ?>
<?php endif; ?>
</div><!-- end decorate -->
</div><!-- end row -->
<?php get_footer(); ?>
The link to this page is:
<li><a href="<?php bloginfo('wpurl'); ?>/category/javascript">Javascript</a></li>