true ]; $limit = get_theme_mod( 'aarambha_real_estate_front_page_property_locations_limits', ['desktop' => 6 ] ); $property_location = 'property-location'; //get the tags $location_limits = ( is_page_template( 'page-templates/location.php' ) ) ? get_option( 'posts_per_page' ) : $limit['desktop']; // number of terms to display per page $location_paged = ( get_query_var( 'paged' ) ) ? get_query_var( 'paged' ) : 1; $offset = ( $location_paged > 0 ) ? $location_limits * ( $location_paged - 1 ) : 1; $max = wp_count_terms( $property_location, array( 'hide_empty' => TRUE ) ); $totalpages = ceil( $max / $location_limits ); // Setup the arguments $args = array( 'offset' => $offset, 'number' => absint($location_limits), 'orderby' => 'count', 'order' => 'DESC', 'hide_empty' => true ); $term_query = get_terms($property_location, $args); if ( ! empty( $term_query ) ) : $section_heading = get_theme_mod( 'aarambha_real_estate_front_page_property_locations_section_heading', esc_html__( 'Reality Property Location', 'aarambha-real-estate' ) ); $section_sub_heading = get_theme_mod( 'aarambha_real_estate_front_page_property_locations_section_sub_heading', '' ); $col_per_row = [ 'desktop' => '3', 'tablet' => '2', 'mobile' => '1' ]; $term_data = cre_get_term_data(); ob_start(); ?>