ERROR 404
-
NOT FOUND
// You may have mis-typed the URL,
// Or the page has been removed,
// Actually, there is nothing to see here...
add_filter( 'wpms_sitemap_exclude_post', 'forzar_limpieza_sitemap_corporativo', 10, 2 ); function forzar_limpieza_sitemap_corporativo( $exclude, $post_id ) { // Pon aquí los números de ID de las páginas que quieres quitar (ej: aviso legal, cookies...) $ids_a_eliminar = array( 12, 34, 56, 78 ); if ( in_array( $post_id, $ids_a_eliminar ) ) { return true; // Fuerza la expulsión en el XML de WP Meta SEO } return $exclude; }
// You may have mis-typed the URL,
// Or the page has been removed,
// Actually, there is nothing to see here...