Forum Replies Created

Viewing 1 replies (of 1 total)
  • I stumbled into this problem today and I needed to find a much simpler solution ASAP! Here’s what I did, if anybody else comes upon the same issue.

    Method A: Edit wp-includes/general-template.php

    Comment out the line(s);

    /* if ( $add_args ) $link = add_query_arg( $add_args, $link ); */

    Method B: On your theme file, create a copy of the function paginate_links() from wp-includes/general-template.php. Name it something else, like my_paginate_links() and comment out the same line(s);

    /* if ( $add_args ) $link = add_query_arg( $add_args, $link ); */

    Now, where you should use paginate_links(), simply use the edited my_paginate_links() function.

Viewing 1 replies (of 1 total)