Skip to content

Instantly share code, notes, and snippets.

@Angelfirenze
Forked from pippinsplugins/gist:8834900
Created February 5, 2014 22:46
Show Gist options
  • Save Angelfirenze/8834907 to your computer and use it in GitHub Desktop.
Save Angelfirenze/8834907 to your computer and use it in GitHub Desktop.
<?php
/*
* Plugin Name: EDD Double Pagination
*/
function pw_edd_duplicate_pagination() {
?>
<script type="text/javascript">
jQuery(document).ready(function($) {
var html = $('#edd_download_pagination').clone();
html.attr('id', 'edd_download_pagination_top');
html.insertBefore( '.edd_downloads_list' );
});
</script>
<?php
}
add_action( 'wp_footer', 'pw_edd_duplicate_pagination' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment