/**
 * Bloquear acceso directo a wp-login.php.
 *
 * Excepción: cuando WordPress llega internamente desde nuestra
 * URL personalizada.
 */
add_action('login_init', function () {

    $request_uri = $_SERVER['REQUEST_URI'] ?? '';

    // Si la petición ya viene desde la URL personalizada,
    // permitimos que wp-login.php continúe normalmente.
    if (str_contains($request_uri, '/' . ACCIONCOOP_CUSTOM_LOGIN_SLUG)) {
        return;
    }

    // Permitir peticiones internas de WordPress.
    if (
        defined('DOING_AJAX') && DOING_AJAX
    ) {
        return;
    }

    // Acceso directo: devolver 404.
    status_header(404);
    nocache_headers();

    wp_die(
        'Página no encontrada.',
        '404',
        ['response' => 404]
    );
});
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="https://accion-test.1961.com.ar/wp-sitemap-index.xsl" ?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><sitemap><loc>https://accion-test.1961.com.ar/wp-sitemap-posts-post-1.xml</loc></sitemap><sitemap><loc>https://accion-test.1961.com.ar/wp-sitemap-posts-post-2.xml</loc></sitemap><sitemap><loc>https://accion-test.1961.com.ar/wp-sitemap-posts-post-3.xml</loc></sitemap><sitemap><loc>https://accion-test.1961.com.ar/wp-sitemap-posts-post-4.xml</loc></sitemap><sitemap><loc>https://accion-test.1961.com.ar/wp-sitemap-posts-post-5.xml</loc></sitemap><sitemap><loc>https://accion-test.1961.com.ar/wp-sitemap-posts-post-6.xml</loc></sitemap><sitemap><loc>https://accion-test.1961.com.ar/wp-sitemap-posts-post-7.xml</loc></sitemap><sitemap><loc>https://accion-test.1961.com.ar/wp-sitemap-posts-post-8.xml</loc></sitemap><sitemap><loc>https://accion-test.1961.com.ar/wp-sitemap-posts-post-9.xml</loc></sitemap><sitemap><loc>https://accion-test.1961.com.ar/wp-sitemap-posts-post-10.xml</loc></sitemap><sitemap><loc>https://accion-test.1961.com.ar/wp-sitemap-posts-post-11.xml</loc></sitemap><sitemap><loc>https://accion-test.1961.com.ar/wp-sitemap-posts-post-12.xml</loc></sitemap><sitemap><loc>https://accion-test.1961.com.ar/wp-sitemap-posts-post-13.xml</loc></sitemap><sitemap><loc>https://accion-test.1961.com.ar/wp-sitemap-posts-post-14.xml</loc></sitemap><sitemap><loc>https://accion-test.1961.com.ar/wp-sitemap-posts-post-15.xml</loc></sitemap><sitemap><loc>https://accion-test.1961.com.ar/wp-sitemap-posts-post-16.xml</loc></sitemap><sitemap><loc>https://accion-test.1961.com.ar/wp-sitemap-posts-post-17.xml</loc></sitemap><sitemap><loc>https://accion-test.1961.com.ar/wp-sitemap-posts-post-18.xml</loc></sitemap><sitemap><loc>https://accion-test.1961.com.ar/wp-sitemap-posts-post-19.xml</loc></sitemap><sitemap><loc>https://accion-test.1961.com.ar/wp-sitemap-posts-post-20.xml</loc></sitemap><sitemap><loc>https://accion-test.1961.com.ar/wp-sitemap-posts-post-21.xml</loc></sitemap><sitemap><loc>https://accion-test.1961.com.ar/wp-sitemap-posts-post-22.xml</loc></sitemap><sitemap><loc>https://accion-test.1961.com.ar/wp-sitemap-posts-post-23.xml</loc></sitemap><sitemap><loc>https://accion-test.1961.com.ar/wp-sitemap-posts-page-1.xml</loc></sitemap><sitemap><loc>https://accion-test.1961.com.ar/wp-sitemap-taxonomies-category-1.xml</loc></sitemap><sitemap><loc>https://accion-test.1961.com.ar/wp-sitemap-taxonomies-post_tag-1.xml</loc></sitemap><sitemap><loc>https://accion-test.1961.com.ar/wp-sitemap-taxonomies-post_format-1.xml</loc></sitemap><sitemap><loc>https://accion-test.1961.com.ar/wp-sitemap-taxonomies-edicion-1.xml</loc></sitemap><sitemap><loc>https://accion-test.1961.com.ar/wp-sitemap-taxonomies-autor-1.xml</loc></sitemap><sitemap><loc>https://accion-test.1961.com.ar/wp-sitemap-users-1.xml</loc></sitemap></sitemapindex>
