WordPress help

I’ve got custom archive page (code below) setup on my site. The problem is, for some reason, it only shows 5 posts per category (which you can see under the "Front Axle" category). All 6 posts show up and when I remove one of the posts that are displayed from that category, the missing post shows up.

I just don’t see anything in here that would be limiting the number of posts returned. Anybody know what the deal is?

Thanks!

<?php get_header(); ?>

	<div id="content">

		<?php if (have_posts()) : ?>

		 <?php $post = $posts[0]; // Hack. Set $post so that the_date() works. ?>
<div class="entry">

		<?php /* If this is a category archive */ if (is_category()) { ?>
		<h2>Posts in the ‘<?php single_cat_title(); ?>’ Category</h2>
		<small>(reverse chronological order)</small>

		<?php /* If this is a daily archive */ } elseif (is_day()) { ?>
		<h2>Posts in <?php the_time('F jS, Y'); ?></h2>
		<small>(reverse chronological order)</small>

		<?php /* If this is a monthly archive */ } elseif (is_month()) { ?>
		<h2>Posts in <?php the_time('F, Y'); ?></h2>
		<small>(reverse chronological order)</small>

		<?php /* If this is a yearly archive */ } elseif (is_year()) { ?>
		<h2>Posts in <?php the_time('Y'); ?></h2>
		<small>(reverse chronological order)</small>

	  	<?php /* If this is an author archive */ } elseif (is_author()) { ?>
		<h2>Author Archive</h2>
		<small>(reverse chronological order)</small>

		<?php /* If this is a paged archive */ } elseif (isset($_GET['paged']) && !empty($_GET['paged'])) { ?>
		<h2>Blog Archives</h2>
		<small>(reverse chronological order)</small>

		<?php } ?>
</div>
<div class="entry">
  <div class="post">
<?php $cats = get_categories("child_of=4"); ?>

<?php if($cats != NULL) { ?>
		<ul>
		<?php foreach ($cats as $cat) { ?>
			<li>

			<?php if($cat != NULL) {
				$base_url = get_bloginfo('home') . "/?cat=" . $cat->cat_ID; ?>
				<p /><h3><a href="<?php echo $base_url?>"><?php echo $cat->cat_name?></a></h3>
			<?php } ?>

				<?php $myposts = get_posts("category=$cat->cat_ID"); ?>
				<ul>
				<?php foreach($myposts as $post) : ?>
					<li><?php the_time('M d') ?>. <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
				<?php endforeach; ?>
				</ul>
			</li>
	<?php } ?>
		</ul>
<?php } ?>
  </div>
</div>
		


	<?php else : ?>
<div class="entry">
		<h2 class="center">Not Found</h2>
<div class="entry">

	<?php endif; ?>

	</div>

<?php get_sidebar(); ?>

<?php get_footer(); ?>

Continue reading WordPress help

Looking for somebody to set a site up for me.

Not very familiar with TWL, I didn’t see a sticky on people asking for help so here it is.

I own a domain (DiscountSauces.com) and am looking to start up a side project with selling sauces online.

For a few years now I have been selling the product through other ways and have just now looked at the idea of a website. My whole deal is for it to look clean. Some of the largest companies online are hotsauce.com, eathot.com, and hotsauceworld.com and their websites are either cluttered to shit or just plain doodoo.I am looking for something to be done that looks really clean (I have some website examples of what I like) and that will allow me the ability to add products to it, take away, etc.
Continue reading Looking for somebody to set a site up for me.

SilverStripe vs WordPress vs Drupal (for small-to-medium sites)

I currently use a mixture of wordpress and drupal.. the sites I make are basically small to medium business (restaurants, cafes, accountants, clothing stores, etc)..

Just found SilverStripe, and it’s a promising replacement for both of the above.

Anyone use it regularly? Any major issues you have with it? Any real limitations you’ve hit? Is it easy to develop for etc?

for the uninitiated..

TBH it looks like a very simple CMS

Continue reading SilverStripe vs WordPress vs Drupal (for small-to-medium sites)

Ebook I wrote..how I made $100+ in a few hours

I wrote this ebook how I made $100+ in a few hours…if you want a copy let me know..all I ask is for you to complete a small offer for me…

If you want it post and I’ll send the offer details / directions to get the ebook

How I made $100+ in a few hours?

I do that everyday anyway. Why would I need your book to do that for me?

Hey king, not everyone on this forum makes money online. A lot of users in this forum do, and a lot don’t, so it’s a resource if anyone wants to try and put my method to work

Continue reading Ebook I wrote..how I made $100+ in a few hours

do a lot of internet marketers live in India?

I see all these posts on wickedfire and the other forums for like "article submissions for $3" or "i’ll write you articles for $2 each" or whatever. And I can’t help but think, for the amount of time it takes to do that, there’s no way $2 or $3 is a good amount of money.

So do these people live in India where $3 is like a few days’ wage, and these people are balling outta control when they get two article orders in a day and make $6?

I can’t understand how some of this stuff could be profitable otherwise.
Continue reading do a lot of internet marketers live in India?

cms system that revolves around letting users submit files….

with screenshots of file/program and lets other users comment, and rate them?

I have looked everywhere but cant find shit.

some help would be appreciated.

You could easily put this together with Drupal, without ever touching code unless you wanted to customize a theme.

Drupal 6, install CCK and Views module, create a user group that is allowed to create content types that have the screenshot, a title and desc and install a review module. Then turn on commenting for that content type.

Continue reading cms system that revolves around letting users submit files….