hi all, i am using the magazeen theme, which has no navigation on it's home/blog page, so i am not sure where to put the navigation code. magazeen is a multipart home page theme and i am unsure how/where to proceed on getting it hooked up with wp-pagenavi, since there was no navigation to replace.
the theme's query is:
<?php
query_posts( 'showposts=3' );
if (have_posts()) :
while (have_posts()) : the_post(); $category = get_the_category();
?>
and then there is a second part:
<?php
query_posts( 'showposts=2&offset=3' );
if (have_posts()) : $counter = 0;
while (have_posts()) : the_post(); $category = get_the_category();
if( $counter % 2 == 0 )
$end = "";
else
$end = "last";
?>
i am following the instructions here, but i'm still not sure where the multipart page fix code should go, since i didn't have a navigation to begin with. for example, does it go inside the while loop? if so, which one?
some of the code fixes were a little confusing to me because they seem to deal with category or tag pages; however, my multipart home page is not filtered by a category or tag.
my wp-pagenavi is version 2.80. thank you!