1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- class WP_Sitemaps_Empty_Test_Provider extends WP_Sitemaps_Provider {
-
- public function __construct( $object_type = 'test' ) {
- $this->object_type = $object_type;
- }
-
- public function get_url_list( $page_num, $object_subtype = '' ) {
- return array();
- }
-
- public function get_max_num_pages( $object_subtype = '' ) {
- return 0;
- }
- }
|