Home / Admin / Increase the Number of Posts Imported Per Batch from Yoast SEO Plugin
Duplicate Snippet

Embed Snippet on Your Site

Increase the Number of Posts Imported Per Batch from Yoast SEO Plugin

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

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

Comments

Add a Comment