Skip to content

Instantly share code, notes, and snippets.

@matty0501
matty0501 / gpeb-navigation-with-filtered-choices.php
Last active October 2, 2024 07:46 — forked from saifsultanc/gpeb-navigation-with-filtered-choices.php
gpeb-navigation-with-filtered-choices.php
<?php
// helper method
function get_array_subset( $array, $offset, $limit ) {
if ( $offset > count( $array ) - 1) {
return [];
}
$start = $offset;
$length = min( $limit, count( $array ) - $offset );
return array_slice( $array, $start, $length );