• I’ve added the following code to my theme for paginated posts:

    <?php wp_pagenavi( array( 'type' => 'multipart' ) ); ?>

    It works wonderfully, but the problem is I have two other plugins adding content below my posts. One of them adds facebook/twitter/etc icons, and the other adds related posts. I would like the page navigation links to appear directly after the post content.

    Is there any way to do that?

    http://wordpress.org/extend/plugins/wp-pagenavi/

Viewing 1 replies (of 1 total)
  • Thread Starter SimpsonsRule

    (@simpsonsrule)

    I’ve been doing some research online and I think I can ask the question a little better.

    I’m looking for a way to add the functionality of <?php wp_pagenavi( array( 'type' => 'multipart' ) ); ?> to the content of a post through add_filter or maybe add_action so that it can come before other plugins which add to the content of posts.

    In other words, I have two plugins which add things to the content of the post. My Single Post template has the following:

    <?php the_content(); ?>
    <?php wp_pagenavi( array( 'type' => 'multipart' ) ); ?>

    If I understand it correctly, those two plugins add things after the_content and then the page navigation links are added last. I tried rearranging the order plugins load but that doesn’t do anything because the WP-PageNavi plugin doesn’t automatically add anything to the_content.

    I tried adding the following function:

    <?php add_filter( "the_content", "wp_pagenavi( array( 'type' => 'multipart' ) )", 1 ); ?>

    But it spat out an error at me on the site. I’m clearly not very good at this, but what I was trying to do was call the pagination function after the_content and set its priority to 1.

    I would appreciate any help with this 🙂

Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: WP-PageNavi] Move Pagination Link Direcly Below Content’ is closed to new replies.