12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
- class WP_Sitemaps_Test_Provider extends WP_Sitemaps_Provider {
-
- public function __construct( $object_type = 'test' ) {
- $this->object_type = $object_type;
- }
-
- public function get_object_subtypes() {
- return array(
- 'type-1' => (object) array( 'name' => 'type-1' ),
- 'type-2' => (object) array( 'name' => 'type-2' ),
- 'type-3' => (object) array( 'name' => 'type-3' ),
- );
- }
-
- public function get_url_list( $page_num, $object_subtype = '' ) {
- return array();
- }
-
- public function get_max_num_pages( $object_subtype = '' ) {
- return 4;
- }
- }
|