On February 3, 2015 at 3:26 pm
I’m thinking about changing something here, but i’m not sure and i’m not a pro in code …
<!–Latest Posts–>
<?php if ( asteria_is_mobile() && (!empty($asteria[‘hide_mob_frontposts’])) ) { ?>
<?php }else{ ?>
<?php get_template_part(‘layout’.$asteria[‘front_layout_id’].”); ?>
<?php } ?>
<!–Latest Posts END–>
And there are two layout : 1 and 4 so I don’t know where to change something …
<!–PAGINATION START–>
<div class=”ast_pagenav”>
<?php
global $wp_query;
$big = 999999999; // need an unlikely integer
echo paginate_links( array(
‘base’ => str_replace( $big, ‘%#%’, esc_url( get_pagenum_link( $big ) ) ),
‘format’ => ‘?paged=%#%’,
‘current’ => max( 1, get_query_var(‘paged’) ),
‘total’ => $wp_query->max_num_pages,
‘show_all’ => true,
‘prev_next’ => false
) );
?>
</div>
<!–PAGINATION END–>