Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter rjett

    (@rjett)

    Yea I’ve already seen this page and tried using these functions to no avail. I also have that plugin.

    Thread Starter rjett

    (@rjett)

    Alright, 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.

    Thread Starter rjett

    (@rjett)

    Someone…anyone?

    Thread Starter rjett

    (@rjett)

    The original code is as follows:

    <div class="navigation">
    			<div class="alignleft"><?php next_posts_link('&laquo; Older Entries') ?></div>
    			<div class="alignright"><?php previous_posts_link('Newer Entries &raquo;') ?></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?

Viewing 4 replies - 1 through 4 (of 4 total)