wpseo_cron_indexing_limit_size

wpseo_cron_indexing_limit_size

Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-seo.24.8.1

apply_filters('wpseo_cron_indexing_limit_size') is found 1 times:

  • /src/integrations/admin/background-indexing-integration.php line 230
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
             * Filter: 'wpseo_cron_indexing_limit_size' - Adds the possibility to limit the number of items that are indexed when in cron action.
             *
             * @param int $limit Maximum number of indexables to be indexed per indexing action.
             */
            return \apply_filters( 'wpseo_cron_indexing_limit_size', 15 );
        }
     
        return $indexation_limit;
    }
     
    /**