I have multiple loops on a homepage.
eg. http://thelibrarybag.com/
i have a navigation under the main post. However i want all the loops to go back/foward a post.
Is this possible?
Code Below.
I have multiple loops on a homepage.
eg. http://thelibrarybag.com/
i have a navigation under the main post. However i want all the loops to go back/foward a post.
Is this possible?
Code Below.
after line 7, try and add:
<?php $paged = get_query_var('paged'); ?>
then in line 37, change to:
<?php query_posts('category_name=the_montage&paged=' . $paged); ?>
and in line 47, change to:
<?php query_posts('category_name=the_plug&paged=' . $paged); ?>
make a backup copy of the theme files before editing.
(totally untested)
Worked perfectly.
Cheers for your help!
You must log in to post.