Created
October 8, 2019 08:40
-
-
Save hmbashar/f4fde5f1fd46b04cdf8f5a62363d7ef3 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
<?php | |
function amar_pagination() { | |
global $wp_query; | |
$amar_links paginate_link(array( | |
'current' => max(1, get_query_var('paged')), | |
'total' => $wp_query->max_num_pages, | |
'type' => 'list', | |
)); | |
$amar_links .= str_replace('page-numbers', 'page-numbers amar-class-name',$amar_links); | |
$amar_links .= str_replace('<ul class="page-numbers amar-class-name'>, '<ul>',$amar_links); | |
echo $amar_links; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment