I've gone to the settings and changed it to 15, but it still only shows as 6 on the site. I modified the Magazine Basic theme because I needed to 3 posts horizontally, but for some reason, I'm only getting 2 rows, instead of 5. I'm very new to php and can't figure where in the code this needs to specify 15 posts on the home page.
I think it has something to do with this php, but I'm not sure:
<?php while (have_posts()) : the_post(); ?>
<?php $x++; ?>
<?php if($x == 2) { $i=1; ?></div><div id="contentwrap"><div id="content"><?php } ?>
<div class="post post<?php if($i==16) { $i = 15; } echo $i; $i++; ?>">
<h1><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h1>
<div class="storycontent">
<?php if(get_option('uwc_excerpt_content') == 'content') {
resize(85,85);
theme_content('(more)');
} else {
resize(85,85);
theme_excerpt(get_option('uwc_excerpt_three'));
}
?>
</div>
</div>
<?php endwhile; ?>
<?php if($x>16) { echo "</div>"; } ?>
</div>