willmacdonald
Forum Replies Created
Viewing 6 replies - 1 through 6 (of 6 total)
-
Forum: Fixing WordPress
In reply to: Editing next_posts_link & previous_posts_linkyou could have a look here for some more info:
http://www.ericmmartin.com/conditional-pagepost-navigation-links-in-wordpress-redux/Will
Forum: Fixing WordPress
In reply to: Editing next_posts_link & previous_posts_linksorry that should say:
actually next_posts_link may NOT always return TRUE, not sure. Need to check later.Forum: Fixing WordPress
In reply to: Editing next_posts_link & previous_posts_linkactually next_posts_link may always return TRUE, not sure. Need to check later.
Forum: Fixing WordPress
In reply to: Editing next_posts_link & previous_posts_linkhow about:
if (next_posts_link()){ echo '<div class="alignleft">«'.next_posts_link('Older Entries').'</div> '; }I would avoid modifying the actual WP source. Every time there is an update you may neeed to re-edit the code.
W
Forum: Fixing WordPress
In reply to: Editing next_posts_link & previous_posts_linkWould it be as simple as:
<div class="navigation"> <div class="alignleft">«<?php next_posts_link('Older Entries') ?></div> <div class="alignright"><?php previous_posts_link('Newer Entries') ?>»</div> </div>I have tried forcing an upgrade to db from version 2.6
Viewing 6 replies - 1 through 6 (of 6 total)