1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <?php
- class WP_Sitemaps_Large_Test_Provider extends WP_Sitemaps_Provider {
-
- public $num_entries = 1;
-
- public function __construct( $num_entries = 50001 ) {
- $this->name = 'tests';
- $this->object_type = 'test';
- $this->num_entries = $num_entries;
- }
-
- public function get_url_list( $page_num, $object_subtype = '' ) {
- return array_fill( 0, $this->num_entries, array( 'loc' => home_url( '/' ) ) );
- }
-
- public function get_sitemap_entries() {
- return array_fill( 0, $this->num_entries, array( 'loc' => home_url( '/' ) ) );
- }
-
- public function get_max_num_pages( $object_subtype = '' ) {
- return $this->num_entries;
- }
- }
|