HEX
Server: Apache
System: Linux webm014.cluster128.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: circuix (152771)
PHP: 8.0.30
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/circuix/adrRc/wp-content/plugins/wp-seopress/inc/functions/options-sitemap.php
<?php

defined('ABSPATH') or exit('Please don&rsquo;t call the plugin directly. Thanks :)');

//XML/HTML Sitemap
//=================================================================================================
//HTML Sitemap Enable
/**
 * @deprecated 5.9.0
 */
function seopress_xml_sitemap_html_enable_option()
{
    return seopress_get_service('SitemapOption')->getHtmlEnable();
}

//HTML Sitemap mapping
/**
 * @deprecated 5.9.0
 */
function seopress_xml_sitemap_html_mapping_option()
{
    return seopress_get_service('SitemapOption')->getHtmlMapping();
}

//HTML Sitemap Exclude
/**
 * @deprecated 5.9.0
 */
function seopress_xml_sitemap_html_exclude_option()
{
    return seopress_get_service('SitemapOption')->getHtmlExclude();

}

//HTML Sitemap Order
/**
 * @deprecated 5.9.0
 */
function seopress_xml_sitemap_html_order_option()
{
    return seopress_get_service('SitemapOption')->getHtmlOrder();
}

//HTML Sitemap Order by
/**
 * @deprecated 5.9.0
 */
function seopress_xml_sitemap_html_orderby_option()
{
    return seopress_get_service('SitemapOption')->getHtmlOrderBy();

}

//HTML Sitemap Date
/**
 * @deprecated 5.9.0
 */
function seopress_xml_sitemap_html_date_option()
{
    return seopress_get_service('SitemapOption')->getHtmlDate();
}

//HTML Sitemap Archive links
/**
 * @deprecated 5.9.0
 */
function seopress_xml_sitemap_html_archive_links_option()
{
    return seopress_get_service('SitemapOption')->getHtmlArchiveLinks();
}

if ('1' == seopress_xml_sitemap_html_enable_option()) {
    function seopress_xml_sitemap_html_display()
    {
        if ('' != seopress_xml_sitemap_html_mapping_option()) {
            if (is_page(explode(',', seopress_xml_sitemap_html_mapping_option()))) {
                add_filter('the_content', 'seopress_xml_sitemap_html_hook');
            }
        }

    }
    add_action('wp', 'seopress_xml_sitemap_html_display');

    function seopress_xml_sitemap_html_hook($html)
    {
        // Attributes
        $atts = shortcode_atts(
            [
                'cpt' => '',
            ],
            $html,
            '[seopress_html_sitemap]'
        );

        //Exclude IDs
        if ('' != seopress_xml_sitemap_html_exclude_option()) {
            $seopress_xml_sitemap_html_exclude_option = seopress_xml_sitemap_html_exclude_option();
        } else {
            $seopress_xml_sitemap_html_exclude_option = '';
        }

        //Order
        if ('' != seopress_xml_sitemap_html_order_option()) {
            $seopress_xml_sitemap_html_order_option = seopress_xml_sitemap_html_order_option();
        } else {
            $seopress_xml_sitemap_html_order_option = '';
        }

        //Orderby
        if ('' != seopress_xml_sitemap_html_orderby_option()) {
            $seopress_xml_sitemap_html_orderby_option = seopress_xml_sitemap_html_orderby_option();
        } else {
            $seopress_xml_sitemap_html_orderby_option = '';
        }

        $html = '';

        //CPT
        if ('' != seopress_xml_sitemap_post_types_list_option()) {
            $html .= '<div class="wrap-html-sitemap sp-html-sitemap">';

            $seopress_xml_sitemap_post_types_list_option = seopress_xml_sitemap_post_types_list_option();

            if (isset($seopress_xml_sitemap_post_types_list_option['page'])) {
                $seopress_xml_sitemap_post_types_list_option = ['page' => $seopress_xml_sitemap_post_types_list_option['page']] + $seopress_xml_sitemap_post_types_list_option; //Display page first
            }

            if (! empty($atts['cpt'])) {
                unset($seopress_xml_sitemap_post_types_list_option);

                $cpt = explode(',', $atts['cpt']);

                foreach ($cpt as $key => $value) {
                    $seopress_xml_sitemap_post_types_list_option[$value] = ['include' => '1'];
                }
            }

            $seopress_xml_sitemap_post_types_list_option = apply_filters('seopress_sitemaps_html_cpt', $seopress_xml_sitemap_post_types_list_option);

            $display_archive = '';
            foreach ($seopress_xml_sitemap_post_types_list_option as $cpt_key => $cpt_value) {
                if ('1' !== seopress_xml_sitemap_html_archive_links_option()) {
                    $display_archive = false;
                }
                $display_archive = apply_filters('seopress_sitemaps_html_remove_archive', $display_archive, $cpt_key);

                if (! empty($cpt_value)) {
                    $html .= '<div class="sp-wrap-cpt">';
                }
                $obj = get_post_type_object($cpt_key);

                if ($obj) {
                    $cpt_name = $obj->labels->name;
                    $cpt_name = apply_filters('seopress_sitemaps_html_cpt_name', $cpt_name, $obj->name);

                    $html .= '<h2 class="sp-cpt-name">' . $cpt_name . '</h2>';
                }
                foreach ($cpt_value as $_cpt_key => $_cpt_value) {
                    if ('1' == $_cpt_value) {
                        $args = [
                            'posts_per_page'   => 1000,
                            'order'            => $seopress_xml_sitemap_html_order_option,
                            'orderby'          => $seopress_xml_sitemap_html_orderby_option,
                            'post_type'        => $cpt_key,
                            'post_status'      => 'publish',
                            'meta_query'       => [['key' => '_seopress_robots_index', 'value' => 'yes', 'compare' => 'NOT EXISTS']],
                            'fields'           => 'ids',
                            'exclude'          => $seopress_xml_sitemap_html_exclude_option,
                            'suppress_filters' => false,
                            'no_found_rows'    => true,
                            'nopaging'         => true,
                        ];
                        if ('post' === $cpt_key || 'product' === $cpt_key) {
                            if (get_post_type_archive_link($cpt_key) && 0 != get_option('page_for_posts')) {
                                if (false === $display_archive) {
                                    $html .= '<ul>';
                                    $html .= '<li><a href="' . get_post_type_archive_link($cpt_key) . '">' . $obj->labels->name . '</a></li>';
                                    $html .= '</ul>';
                                }
                            }

                            $args_cat_query = [
                                'orderby'	         => 'name',
                                'order'		          => 'ASC',
                                'meta_query'       => [['key' => '_seopress_robots_index', 'value' => 'yes', 'compare' => 'NOT EXISTS']],
                                'exclude'          => $seopress_xml_sitemap_html_exclude_option,
                                'suppress_filters' => false,
                            ];
                            if ('post' === $cpt_key) {
                                $args_cat_query = apply_filters('seopress_sitemaps_html_cat_query', $args_cat_query);

                                $cats = get_categories($args_cat_query);
                            } elseif ('product' === $cpt_key) {
                                $args_cat_query = apply_filters('seopress_sitemaps_html_product_cat_query', $args_cat_query);

                                $cats = get_terms('product_cat', $args_cat_query);
                            }

                            if (! empty($cats)) {
                                $html .= '<div class="sp-wrap-cats">';

                                foreach ($cats as $cat) {
                                    if ( ! is_wp_error($cat) && is_object($cat)) {
                                        $html .= '<div class="sp-wrap-cat">';
                                        $html .= '<h3 class="sp-cat-name"><a href="'. get_term_link($cat->term_id) .'">' . $cat->name . '</a></h3>';

                                        if ('post' === $cpt_key) {
                                            unset($args['cat']);
                                            $args['cat'][] = $cat->term_id;
                                        } elseif ('product' === $cpt_key) {
                                            unset($args['tax_query']);
                                            $args['tax_query'] = [[
                                                'taxonomy' => 'product_cat',
                                                'field'    => 'term_id',
                                                'terms'    => $cat->term_id,
                                            ]];
                                        }

                                        require dirname(__FILE__) . '/sitemap/template-html-sitemap.php';

                                        $html .= '</div>';
                                    }
                                }

                                $html .= '</div>';
                            }
                        } else {
                            require dirname(__FILE__) . '/sitemap/template-html-sitemap.php';
                        }
                    }
                }
                if (! empty($cpt_value)) {
                    $html .= '</div>';
                }
            }
            $html .= '</div>';
        }

        return $html;
    }
    add_shortcode('seopress_html_sitemap', 'seopress_xml_sitemap_html_hook');
}