HEX
Server: LiteSpeed
System: Linux premium69.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
User: swifizcd (1555)
PHP: 8.2.30
Disabled: NONE
Upload Files
File: /home/swifizcd/shoppers-joy.com.ng/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;
    }
}

?>