Home / Admin / Increase the Number of Posts Imported Per Batch from Rank Math Plugin
Duplicate Snippet

Embed Snippet on Your Site

Increase the Number of Posts Imported Per Batch from Rank Math Plugin

This filter can be used to increase the default number of posts imported per batch from Rank Math plugin. The default value is 100 posts whereas this filter increases it to 250.

<10
Code Preview
php
<?php
add_filter( 'aioseo_import_rank_math_posts_per_action', 'aioseo_increase_rank_math_posts_import');
function aioseo_increase_rank_math_posts_import( $number ) {
	return 250;
}

Comments

Add a Comment