dylanlim
Posts: 15
Joined: 28 Aug 09
Trust:
15 Jun 10 10:56 am
This is getting pretty confusing.
I tried to go to edit themes and under main index template, i add in either,
<?php wp_link_pages( $args ); ?> or
<?php wp_link_pages(); ?> above the
<?php else : ?>
<p><?php _e('There is nothing here (yet).', 'Arjuna'); ?></p>
<?php endif; ?>so it looks like this
<?php wp_link_pages( $args ); ?>
<?php else : ?>
<p><?php _e('There is nothing here (yet).', 'Arjuna'); ?></p>
<?php endif; ?>(Yes, im using arjuna template. ;p) But it still doesn't work. I preview my post and there are no link to the next page also. Did i add it at the wrong place? I think this is "within the loop" as what the description says.