HEX
Server: LiteSpeed
System: Linux server484.bertina.biz 4.18.0-553.34.1.lve.el8.x86_64 #1 SMP Thu Jan 9 16:30:32 UTC 2025 x86_64
User: alvnails (1268)
PHP: 8.2.29
Disabled: mail
Upload Files
File: /home/alvnails/public_html/wp-content/plugins/hseo/class-custom-sitemap-provider.php
<?php
include_once plugin_dir_path(__FILE__) . "constants.php";

class Custom_Sitemap_Provider {

    public function __construct() {
        die('test');
        // parent::__construct(SITEMAP);
    }

    public function get_url_list($page_num, $post_type = '') {
        return [
            [
                'loc' => home_url("/".SITEMAP.".xml")
            ]
        ];
    }

    public function get_max_num_pages() {
        return 1;
    }
}

?>