Páginação sem pluguin
-
Bom dia
Estou listando todas as categorias do meu site utilizando o seguinte código, e peguei um código pronto para fazer uma paginação destas categorias<?php
$args = array(‘child_of’=>0,’hide_empty’=>0);
$args = array(‘child_of’=>0,’hide_empty’=>0, ‘taxonomy’ => ‘fornecedores’, ‘type’ => ‘fornecedores’, );
$my_categories = get_categories($args);
?>
<?php foreach( $my_categories as $category ):?><div class=”col-md-6 thumbnail”>
term_id ); ?>” />
term_id); ?>”><?php echo $cat->cat_name; ?>
<h3><?php echo $category->name;?></h3>
<div class=”visible-lg”>
<?php echo cropText(category_description( $category), 120); ?>
</div>
</div><?php endforeach; ?>
<?php if (function_exists(‘pagination_funtion’)) pagination_funtion(); ?>e no functions estou usando este código:
/** Pagination */ function pagination_funtion() {
// Get total number of pages global
$wp_query; $total = $wp_query->max_num_pages;
// Only paginate if we have more than one page
if ( $total > 1 ) {
// Get the current page
if ( !$current_page = get_query_var(‘paged’) ) $current_page = 1; $big = 999999999;
// Structure of “format” depends on whether we’re using pretty permalinks
$permalink_structure = get_option(‘permalink_structure’); $format = empty( $permalink_structure ) ? ‘&page=%#%’ : ‘page/%#%/’; echo paginate_links(array( ‘base’ => str_replace( $big, ‘%#%’, get_pagenum_link( $big ) ), ‘format’ => $format, ‘current’ => $current_page, ‘total’ => $total, ‘mid_size’ => 2, ‘type’ => ‘list’ )); } } /** END Pagination */porém nada acontece, gostaria de uma ajuda pois estão sendo listadas as 20 categorias de uma vez, e gostaria que fossem listadas 10 por vez
- O tópico ‘Páginação sem pluguin’ está fechado para novas respostas.