File: /home/circuix/adrRc/wp-content/plugins/wp-seopress/inc/functions/sitemap/template-html-sitemap.php
<?php
defined('ABSPATH') or exit('Please don’t call the plugin directly. Thanks :)');
$args = apply_filters('seopress_sitemaps_html_query', $args, $cpt_key);
if (is_post_type_hierarchical($cpt_key)) {
$postslist = get_posts($args);
$args2 = [
'post_type' => $cpt_key,
'include' => $postslist,
'sort_order' => $seopress_xml_sitemap_html_order_option,
'sort_column' => $seopress_xml_sitemap_html_orderby_option,
];
$args2 = apply_filters('seopress_sitemaps_html_pages_query', $args2, $cpt_key);
$postslist = get_pages($args2);
} else {
$postslist = get_posts($args);
}
if (! empty($postslist)) {
$date = true;
if (is_post_type_hierarchical($cpt_key)) {
$walker_page = new Walker_Page();
$html .= '<ul class="sp-list-posts sp-cpt-hierarchical">';
if (get_post_type_archive_link($cpt_key)) {
if (false === $display_archive) {
$html .= '<li><a href="' . get_post_type_archive_link($cpt_key) . '">' . $obj->labels->name . '</a></li>';
}
}
$depth = 0;
$depth = apply_filters('seopress_sitemaps_html_pages_depth_query', $depth);
$html .= $walker_page->walk($postslist, $depth);
$html .= '</ul>'; // 0 means display all levels.
} else {
$html .= '<ul class="sp-list-posts">';
if ('post' != $cpt_key && 'product' != $cpt_key && isset($obj->labels->name) && get_post_type_archive_link($cpt_key)) {//check if it's not the Post / Product post type
if (false === $display_archive) {
$html .= '<li><a href="' . get_post_type_archive_link($cpt_key) . '">' . $obj->labels->name . '</a></li>';
}
}
foreach ($postslist as $post) {
setup_postdata($post);
//Prevent duplicated items
if ($cpt_key === 'post' || $cpt_key === 'product') {
$tax = $cpt_key ==='product' ? $tax = 'product_cat' : $tax = 'category';
if (!has_term($cat, $tax, $post)) {
continue;
}
}
$html .= '<li>';
$html .= '<a href="' . get_permalink($post) . '">' . get_the_title($post) . '</a>';
if ('1' != seopress_xml_sitemap_html_date_option()) {
$date = apply_filters('seopress_sitemaps_html_post_date', $date, $cpt_key);
if (true === $date) {
$html .= ' - ' . get_the_date('j F Y', $post);
}
}
$html .= '</li>';
}
wp_reset_postdata();
$html .= '</ul>';
}
}