Created
January 13, 2018 00:11
-
-
Save FinalDestiny/aa45aea642ba9c9576d354076b8b5e53 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
(function($) { | |
$(document).ready(function() { | |
leftarea = $('#left-area'); | |
pageNavi = leftarea.find('.wp-pagenavi'); | |
pageNavigation = leftarea.find('.pagination'); | |
if ( pageNavi.length ) { | |
pagenav = $('#left-area .wp-pagenavi'); | |
} | |
else { | |
pagenav = $('#left-area .pagination'); | |
} | |
pagenav.detach(); | |
leftarea.after(pagenav); | |
}); | |
})(jQuery) | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment