rjett
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: next/previous not showing upYea I’ve already seen this page and tried using these functions to no avail. I also have that plugin.
Forum: Fixing WordPress
In reply to: next/previous not showing upAlright, it’s still not happening for me. The site I’m working on is sabatoscrystalball.com . If you click on any article then scroll to the bottom, I want it to read Next | Previous instead of the title of the article. From what I understand, the wp_link_pages function you referenced manipulates the link text of articles that are multiple pages…right? I think I need to work with the next_post_link, but I’m not totally sure since everything I’ve done with it doesn’t effect what I’m trying to accomplish.
Forum: Fixing WordPress
In reply to: previous_post_link problemSomeone…anyone?
Forum: Fixing WordPress
In reply to: previous_post_link problemThe original code is as follows:
<div class="navigation"> <div class="alignleft"><?php next_posts_link('« Older Entries') ?></div> <div class="alignright"><?php previous_posts_link('Newer Entries »') ?></div> </div>Here’s what I tried (unsuccessfully) to get it to just say ‘next’ or ‘previous’:
<div class="navigation"> <div class="alignleft"><?php next_post_link('%link', 'Next', TRUE); ?></div> <div class="alignright"><?php previous_post_link('%link', 'Previous', TRUE); ?></div> </div>Again, I believe I followed the directions perfectly on http://codex.wordpress.org/Template_Tags/previous_post_link . These changes were made in the archives.php file. Is there another file that should be edited?