You appear to be a bot. Output may be restricted
Description
Gets a URL list for a sitemap.
Usage
$array = WP_Sitemaps_Large_Test_Provider::get_url_list( $page_num, $object_subtype );
Parameters
- $page_num
- ( int ) required – Page of results.
- $object_subtype
- ( string ) optional – Optional. Object subtype name. Default empty.
Returns
array List of URLs for a sitemap.
Source
File name: wordpress-develop-tests/phpunit/includes/class-wp-sitemaps-large-test-provider.php
Lines:
1 to 4 of 4
public function get_url_list( $page_num, $object_subtype = '' ) { return array_fill( 0, $this->num_entries, array( 'loc' => home_url( '/' ) ) ); }