public function get_url_list( $page_num,
$object_subtype = ''
) { // Restores the more descriptive, specific name for use within this method.
$post_type =
$object_subtype;
// Bail early if the queried post type is not supported.
$supported_types =
$this->
get_object_subtypes();
if ( !
isset( $supported_types[ $post_type ] ) ) { return array
();
} /**
* Filters the posts URL list before it is generated.
*
* Returning a non-null value will effectively short-circuit the generation,
* returning that value instead.
*
* @since 5.5.0
*
* @param array[]|null $url_list The URL list. Default null.
* @param string $post_type Post type name.
* @param int $page_num Page of results.
*/