I've been able to replace
<?php next_posts_link('« Older Entries') ?> | <?php previous_posts_link('Newer Entries »') ?>
in index.php, archive.php, etc. with
<?php if(function_exists('wp_paginate')) {
wp_paginate();
} ?>
and it works GREAT. But, when I try to replace
<?php previous_post_link('« %link') ?> | <?php next_post_link('%link »') ?>
in single.php WP-Paginate doesn't work.
I know there is some difference in php code, but I don't know what it is.
Any ideas?
Thank you,
Charlie