Good evening!
I have a page with medical services ( page ). The page displays 10 services. How to display not 10, but all?
Page code: `
<section id="content"> <div class="container"> <div class="row"> <div class="<?php gg_page_container(); ?>"> <?php if (have_posts()) : // Queue the first post. the_post(); // Rewind the loop back rewind_posts(); ?> <div class="gg_posts_grid"> <ul class="el-grid no_magnific" data-layout-mode="fitRows" data-gap="gap"> <?php while (have_posts()) : the_post(); ?> <li class="isotope-item col-md-12"> <?php set_query_var( 'medical_services_thumb', 'medical-services-thumb-1col' ); get_template_part( 'parts/medical-services/part','medical-service' ); ?> </li> <?php endwhile; ?> </ul> </div> <?php if (function_exists("gg_pagination")) { gg_pagination(); } ?> <?php // If no content, include the "No posts found" template. else : get_template_part( 'parts/post-formats/part', 'none' ); endif; ?> </div> <?php gg_page_sidebar(); ?> </div><!-- .row --> </div><!-- .container --> </section> `