courtesyflush
Forum Replies Created
-
thanks mike
Forum: Fixing WordPress
In reply to: Dashboard turned white? Blank phps。hmmmm… IE8 seems to be normal though, gotta be a FF issue.
Forum: Everything else WordPress
In reply to: Getting blog traffic in ChinaForum: Plugins
In reply to: Lightbox2 doesn't work on page 2 for ePhoto themeanswer: upgrading to the new epanel, one has to remove old custom fields for thumbnails.
Forum: Fixing WordPress
In reply to: How do i make the Page Navi work on home.php in ePhoto Themeat the top of home.php, add the following (marked in bold)
========================================================
<!–Begind recent post–>
<?php $my_query = new WP_Query(“showposts=$artsee_homepage_posts&order=DESC&cat=-$artsee_blog_id_number” . ‘&paged=’ . get_query_var(‘paged’));
========================================================
then, scroll down a bit you’ll see the triple “</div>”, below them you should have the following code:
</div>
</div>
</div><?php endwhile; ?>
</div>
<div style=”clear: both;”></div>
<?php if(function_exists(‘wp_pagenavi’)) { wp_pagenavi(); }
else { ?>
<p class=”pagination”>
<?php next_posts_link(‘« Previous Entries’) ?>
<?php previous_posts_link(‘Next Entries »’) ?>
</p>
<?php } ?></div>
<div id=”sidebar” style=”margin-top: 15px;”>
=======================================================
it’s all good except pagination stops at page three for me… =(