HI Yellow Swordfish,
thank you very much. That was a good help.
I changed:
function sp_google_sitemap_do_generate_yoast_main() {
$map = ”;
$base = $GLOBALS[‘wp_rewrite’]->using_index_permalinks() ? ‘index.php/’ : ”;
$date = spdb_table(SFPOSTS, ”, ‘UNIX_TIMESTAMP(post_date)’, ‘post_date DESC’, ‘1’);
$map.= ‘<sitemap>’.”
“;
$map.= ‘<loc>’.home_url($base.’forum-sitemap.xml’).'</loc>’.”
“;
$map.= ‘<lastmod>’.date($date).’ </lastmod>’.”
“;
$map.= ‘</sitemap>’ . “
“;
return $map;
}
Into:
function sp_google_sitemap_do_generate_yoast_main() {
$map = ”;
$base = $GLOBALS[‘wp_rewrite’]->using_index_permalinks() ? ‘index.php/’ : ”;
$date = spdb_table(SFPOSTS, ”, ‘UNIX_TIMESTAMP(post_date)’, ‘post_date DESC’, ‘1’);
$map.= ‘<sitemap>’.”
“;
$map.= ‘<loc>’.home_url($base.’forum-sitemap.xml’).'</loc>’.”
“;
$map.= ‘<lastmod>’.htmlspecialchars(date(‘c’, $date)).'</lastmod>’.”
“;
$map.= ‘</sitemap>’ . “
“;
return $map;
}
…now it works