wpseo_cron_link_indexing_limit_size

wpseo_cron_link_indexing_limit_size

Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-seo.24.8.1

apply_filters('wpseo_cron_link_indexing_limit_size') is found 1 times:

  • /src/integrations/admin/background-indexing-integration.php line 250
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
             * Filter: 'wpseo_cron_link_indexing_limit_size' - Adds the possibility to limit the number of links that are indexed when in cron action.
             *
             * @param int $limit Maximum number of link indexables to be indexed per link indexing action.
             */
            return \apply_filters( 'wpseo_cron_link_indexing_limit_size', 3 );
        }
     
        return $link_indexation_limit;
    }
     
    /**