max_num_pages; $current_page = max( 1, get_query_var('paged') ); $homepage_layout = get_theme_mod( 'glob_homepage_layout', 'default' ); if ( have_posts() ) : /* Start the Loop */ while ( have_posts() ) : the_post(); /* * Include the Post-Format-specific template for the content. * If you want to override this in a child theme, then include a file * called content-___.php (where ___ is the Post Format name) and that will be used instead. */ switch ( $homepage_layout ) { case 'home1': get_template_part( 'template-parts/content', 'list' ); break; default: get_template_part( 'template-parts/content', 'grid' ); break; } endwhile; else : get_template_part( 'template-parts/content', 'none' ); endif; if ( $wp_query->max_num_pages > 1 ) { echo '
'; the_posts_pagination(array( 'prev_next' => True, 'prev_text' => '', 'next_text' => '', 'before_page_number' => '' . __('Page', 'glob') . ' ', )); echo '
'; } ?>