Ok. I have a major problem because I was thinking I had 12-24 hrs before a domain would resolve and it did it immediately, which didn't give me any time to figure out this problem, which is that the Previous/Next links in archives.php, that is controlling my "news" section, don't work.
I hate to do this, but I'm leaving the site up live right now for the purposes of troubleshooting:
I don't know if it's an issue with Permalinks or what, but here's what's in the code:
<?php while (have_posts()) : the_post(); ?>
<!-- post start -->
<div class="news_page" id="post-<?php the_ID(); ?>">
<h2>"><?php the_title();?></h2>
<?php the_time('F j, Y'); ?> - <?php echo get_post_meta($post->ID, 'Publication', true); ?>
</div>
<!-- post end -->
<?php endwhile; ?>
<div class="prevnextnav">
<div class="floatleft"><?php posts_nav_link(); ?></div>
</div>
This results in this url: http://www.shaydoron.net/news/page/2/, which results in an error and takes you back to index.php - but a messed up version of index.php.
I think it must have something to do with the way the permalinks are making the /page/2/...
I have no idea how to figure this out, and the WP specialist who'd helped me with my theme is gone right now. URGENTLY NEEDING advice!!